Type Definition substrate_stellar_sdk::compound_types::UnlimitedVarArray[][src]

pub type UnlimitedVarArray<T> = LimitedVarArray<T, { i32::MAX }>;
Expand description

Type for an XDR array whose length is not predefined and not bounded

Actually an UnlimitedVarArray is limited: it must not have more than i32::MAX characters.