Algorand TypeScript
    Preparing search index...

    Class DynamicArray<TItem>

    A dynamic sized array of arc4 items

    Type Parameters

    • TItem extends ARC4Encoded

      The type of a single item in the array

    Hierarchy

    Indexable

    • [index: uint64]: TItem

      Get or set the item at the specified index. Negative indexes are not supported

    Index

    Constructors

    Accessors

    Methods

    • Creates a string by concatenating all the items in the array delimited by the specified separator (or ',' by default)

      Parameters

      • Optionalseparator: string

      Returns string

      Join is not supported in Algorand TypeScript

    • Push a number of items into this array

      Parameters

      • ...items: TItem[]

        The items to be added to this array

      Returns void