Uses of Class
convex.core.data.ACountable
Packages that use ACountable
Package
Description
Fundamental Convex classes used for the decentralised network
Crypto algorithms used within Convex, particularly for digital signatures and
cryptographic hashes
Data structures and algorithms, including a complete set of classes
required to implement immutable, decentralised data objects.
CVM type system implementation.
Core CVM implementation
Convex network transaction types.
-
Uses of ACountable in convex.core
Subclasses of ACountable in convex.coreModifier and TypeClassDescriptionclassClass representing a Peer's view of the overall network consensus state.final classA Block contains an ordered collection of signed transactions that may be applied collectively as part of a state update.classClass representing the result of applying a Block to a State.classClass representing an Ordering of transactions, along with the consensus position.final classClass representing the result of a Query or Transaction.classClass 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.crypto
Subclasses of ACountable in convex.core.cryptoModifier and TypeClassDescriptionclassClass representing a cryptographic signatureclassImmutable data value class representing an Ed25519 digital signature. -
Uses of ACountable in convex.core.data
Subclasses of ACountable in convex.core.dataModifier and TypeClassDescriptionclassAbstract base class for binary data stored in Java arrays.classAbstract base class for data objects containing immutable chunks of binary data.classAbstract base class for Blob-like objects, which conceptually behave as a sequence of bytes.classAbstract base class for BlobMaps: a sorted radix-tree map of Blobs to Values.classImmutable class representing an Ed25519 Public Key for an AccountclassClass representing the current on-chain status of an account.classACollection<T extends ACell>Abstract base class for Persistent Merkle CollectionsclassADataStructure<E extends ACell>Abstract base class for Persistent data structures.final classImmutable class representing an Address, generally used to uniquely identify an Account.classclassclassAbstract base class for lists.classclassAbstract base class for maps.classclassBase class for Record data types.classAbstract base class for generic records.classAbstract base class for concrete sequential data structure (immutable persistent lists and vectors etc.)classAbstract based class for sets.classAbstract base Class representing a CVM String.classAbstract base class for vectors.classGeneral purpose immutable wrapper for byte array data.final classBlobMap node implementation supporting: An optional prefix string An optional entry with this prefix Up to 16 child entries at the next level of depthclassImplementation of a large Blob data structure consisting of 2 or more chunks.classClass used to represent an immutable 32-byte Hash value.classImplementation of a list wrapping a vector.final classWrapper for an 8-byte long as a Blob We use this mainly for efficient management of indexes using Longs in BlobMaps.classMap.Entry implementation for persistent maps.classLimited 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 representationclassPersistent Map for large hash maps requiring tree structure.classClass describing the on-chain state of a Peer declared on the network.classLimited size Persistent Merkle Set implemented as a small sorted list of Values Must be sorted by Key hash value to ensure uniqueness of representationclassPersistent Set for large hash sets requiring tree structure.final classSignedData<T extends ACell>Node representing a signed data object.final classClass representing a short CVM string, backed by a flat Blob Used for most small strings, and acts as the leaf chunk for StringTreesclassAString subclass representing a subsequence of some Blob dataclassString implementation class wrapping a BlobTree.classVectorArray<T extends ACell>Experimental: implementation of AVector backed by a Java array for temporary usage purposes.classVectorLeaf<T extends ACell>A Persistent Vector implementation representing 0-16 elements with a packed Vector prefix.classVectorTree<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 that return ACountableModifier and TypeMethodDescriptionabstract ACountable<E>ACountable.empty()Returns a canonical, singleton empty instance of the same type as this Countable value.ACountable.slice(long start) Gets a slice of this data structure from start to the endabstract ACountable<E>ACountable.slice(long start, long end) Gets a slice of this data structureMethods 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.data.type
Methods in convex.core.data.type that return ACountableModifier and TypeMethodDescriptionACountable<?>Countable.defaultValue()ACountable<?>Countable.implicitCast(ACell a) -
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 instanceMethods in convex.core.lang with parameters of type ACountableModifier and TypeMethodDescriptionstatic longJuice.costBuildStructure(ACountable<ACell> counted, long n) Computes the data build cost of a countable structure of given length -
Uses of ACountable in convex.core.transactions
Subclasses of ACountable in convex.core.transactionsModifier and TypeClassDescriptionclassAbstract base class for immutable transactions Transactions may modify the on-chain State according to the rules of the specific transaction type.classTransaction representing a Call to an Actor.classTransaction class representing the Invoke of an on-chain operation.classThe Multi class enables multiple child transactions to be grouped into a single wrapper transaction with useful joint execution semantics.classTransaction class representing a coin Transfer from one account to another