solana_libra_stdlib 0.0.0

Solana Libra stdlib
1
2
3
4
5
6
7
8
9
10
11
12
13
// A variable-sized container that can hold both unrestricted types and resources.

module Vector {

  struct T{}

  native public length(v: &R#Self.T): u64;

  public is_empty(v: &R#Self.T): bool {
    return Self.length(move(v)) == 0;
  }

}