#include "llvm/ADT/FunctionExtras.h"
#include "llvm/Support/Error.h"
#include <tuple>
#include <utility>
Go to the source code of this file.
|
template<typename T > |
using | clang::clangd::Callback = llvm::unique_function< void(llvm::Expected< T >)> |
| A Callback<T> is a void function that accepts Expected<T>. More...
|
|
|
template<class Func , class... Args> |
ForwardBinder< Func, Args... > | clang::clangd::Bind (Func F, Args &&... As) |
| Creates an object that stores a callable (F ) and first arguments to the callable (As ) and allows to call F with at a later point. More...
|
|