1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) The Diem Core Contributors
// Copyright (c) The Move Contributors
// SPDX-License-Identifier: Apache-2.0

//! Names of well-known functions.
//!
//! This currently only contains those declarations used somewhere, not all well-known
//! declarations. It can be extended on the go.

pub const VECTOR_BORROW_MUT: &str = "vector::borrow_mut";
pub const TABLE_BORROW_MUT: &str = "table::borrow_mut";
pub const EVENT_EMIT_EVENT: &str = "event::emit_event";
pub const TABLE_TABLE: &str = "table::Table";