object ViewPosition extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ViewPosition
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ListIndex(index: Int) extends MerklePathElement with Product with Serializable

    For MerkleTreeInnerNodes which branch to a list of subviews, the subtree is identified by the index in the list of subviews.

  2. sealed trait MerklePathElement extends Product with Serializable with PrettyPrinting

    A single element on a path through a Merkle tree.

  3. case class MerkleSeqIndex(index: List[Direction]) extends MerklePathElement with Product with Serializable

    A leaf position in a MerkleSeq, encodes as a path of directions from the leaf to the root.

    A leaf position in a MerkleSeq, encodes as a path of directions from the leaf to the root. The path is directed from the leaf to the root such that common subpaths can be shared.

  4. case class MerkleSeqIndexFromRoot(index: List[Direction]) extends MerklePathElement with Product with Serializable

    Same as MerkleSeqIndex, with the position directed from the root to the leaf

Value Members

  1. implicit def prettyViewPosition: Pretty[ViewPosition]
  2. val root: ViewPosition

    The root ViewPosition has an empty path.

  3. object MerklePathElement extends Serializable
  4. object MerkleSeqIndex extends Serializable