Algorand TypeScript
    Preparing search index...

    Type Alias bytes

    A sequence of zero or more bytes (ie. byte[])

    type bytes = {
        length: uint64;
        at(i: Uint64Compat): bytes;
        bitwiseAnd(other: BytesCompat): bytes;
        bitwiseInvert(): bytes;
        bitwiseOr(other: BytesCompat): bytes;
        bitwiseXor(other: BytesCompat): bytes;
        concat(other: BytesCompat): bytes;
        equals(other: BytesCompat): boolean;
        slice(): bytes;
        slice(start: Uint64Compat): bytes;
        slice(start: Uint64Compat, end: Uint64Compat): bytes;
        toString(): string;
    }
    Index

    Properties

    length: uint64

    Retrieve the length of the byte sequence

    Methods