llvm/lldb/source/Interpreter/CommandHistory.cpp

//===-- CommandHistory.cpp ------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include <cinttypes>
#include <optional>

#include "lldb/Interpreter/CommandHistory.h"

usingnamespacelldb;
usingnamespacelldb_private;

size_t CommandHistory::GetSize() const {}

bool CommandHistory::IsEmpty() const {}

std::optional<llvm::StringRef>
CommandHistory::FindString(llvm::StringRef input_str) const {}

llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const {}

llvm::StringRef CommandHistory::operator[](size_t idx) const {}

llvm::StringRef CommandHistory::GetRecentmostString() const {}

void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) {}

void CommandHistory::Clear() {}

void CommandHistory::Dump(Stream &stream, size_t start_idx,
                          size_t stop_idx) const {}