Uses of Class
convex.core.data.ACountable
Packages that use ACountable
Package
Description
Fundamental Convex classes used for the decentralised network
Data structures and algorithms, including a complete set of classes
required to implement immutable, decentralised data objects.
Core CVM implementation
-
Uses of ACountable in convex.core
Subclasses of ACountable in convex.coreModifier and TypeClassDescriptionclass
Class representing a Peer's view of the overall network consensus state.class
A block contains an ordered collection of signed transactions that may be applied collectively as part of a state update.class
Class representing the result of applying a Block to a State.class
Class representing the result of a Query or Transaction.class
Class representing the immutable state of the CVM State transitions are represented by blocks of transactions, according to the logic: s[n+1] = s[n].applyBlock(b[n]) State contains the following elements - Map of AccountStatus for every Address - Map of PeerStatus for every Peer Address - Global values - Schedule data structure "State. -
Uses of ACountable in convex.core.data
Subclasses of ACountable in convex.core.dataModifier and TypeClassDescriptionclass
Abstract base class for binary data stored in Java arrays.class
Abstract base class for data objects containing immutable chunks of binary data.class
Abstract base class for a sorted radix-tree map of Blobs to values.class
Immutable class representing an Ed25519 Public Key for an Accountclass
Class representing the current on-chain status of an account.class
ACollection<T extends ACell>
Abstract base class for Persistent Merkle Collectionsclass
ADataStructure<E extends ACell>
Abstract base class for Persistent data structures.class
Immutable class representing an Address, generally used to uniquely identify an Account.class
class
class
Abstract base class for lists.class
class
Abstract base class for maps.class
class
Base class for Blobs which represent an integral numeric valueclass
Base class for record data types.class
Abstract base class for generic records.class
Abstract base class for persistent lists and vectorsclass
Abstract based class for sets.class
Class representing a CVM Stringclass
Abstract base class for vectors.class
General purpose immutable wrapper for byte array data.class
BlobMap node implementation supporting: An optional prefix string An optional entry with this prefix Up to 16 child entries at the next level of depthclass
Implementation of a large Blob data structure consisting of 2 or more chunks.class
Class used to represent an immutable 32-byte Hash value.class
Implementation of a list wrapping a vector.class
Wrapper for an 8-byte long blob We use this for efficient management of indexes using longs in BlobMaps.class
Map.Entry implementation for persistent maps.class
Limited size Persistent Merkle Map implemented as a small sorted list of Key/Value pairs Must be sorted by Key hash value to ensure uniqueness of representationclass
Persistent Map for large hash maps requiring tree structure.class
Class describing the on-chain state of a Peer declared on the network.class
Limited size Persistent Merkle Set implemented as a small sorted list of Values Must be sorted by Key hash value to ensure uniqueness of representationclass
Persistent Set for large hash sets requiring tree structure.class
Class representing a short CVM string.class
AString subclass representing a subsequence of another charsequenceclass
class
VectorArray<T extends ACell>
Experimental: implementation of AVector backed by a Java array for temporary usage purposes.class
VectorLeaf<T extends ACell>
A Persistent Vector implementation representing 0-16 elements with a packed Vector prefix.class
VectorTree<T extends ACell>
Persistent Vector implemented as a merkle tree of chunks shift indicates the level of the tree: 4 = 1st level, 8 = second etc.Methods in convex.core.data with parameters of type ACountableModifier and TypeMethodDescriptionSets.create(ACountable<T> source)
Creates a set of all the elements in the given data structure -
Uses of ACountable in convex.core.lang
Methods in convex.core.lang that return ACountableModifier and TypeMethodDescriptionstatic <E extends ACell>
ACountable<E>RT.ensureCountable(ACell a)
Casts to an ACountable instance