/// var a_bool: Vector.<Boolean> = new <Boolean>[true, false];
/// var b_bool: Vector.<Boolean> = new <Boolean>[false, true, false];
/// var c_bool: Vector.<Boolean> = new <Boolean>[];
/// a_bool.pop();
false
/// a_bool.pop();
true
/// a_bool.pop();
undefined
/// a_bool.push(0, "true", -1, 3.5, "false", false, true);
7
/// (contents of a_bool...)
7 elements
false
true
true
true
true
false
true
/// b_bool.push(0, "true", -1, 3.5, "false", false, true);
10
/// (contents of b_bool...)
10 elements
false
true
false
false
true
true
true
true
false
true
/// c_bool.push();
0
/// (contents of c_bool...)
0 elements
/// c_bool.push(false);
1
/// (contents of c_bool...)
1 elements
false
/// var a0_class = new Superclass();
/// var a1_class = new Subclass();
/// var a_class: Vector.<Superclass> = new <Superclass>[a0_class, a1_class];
/// var b_class: Vector.<Subclass> = new <Subclass>[];
/// b_class.length = 1;
/// b_class[0] = new Subclass();
/// a_class.pop();
[object Subclass]
/// a_class.pop();
[object Superclass]
/// a_class.pop();
undefined
/// a_class.push(a1_class, a0_class, a0_class, a1_class);
4
/// a_class[0] === a_class[3];
true
/// a_class[1] === a_class[2];
true
/// (contents of a_class...)
4 elements
[object Subclass]
[object Superclass]
[object Superclass]
[object Subclass]
/// b_class.push(new Subclass());
2
/// (contents of b_class...)
2 elements
[object Subclass]
[object Subclass]
/// var a_int: Vector.<int> = new <int>[1,2];
/// var b_int: Vector.<int> = new <int>[5,16];
/// a_int.pop();
2
/// a_int.push(5);
2
/// (contents of a_int)...
2 elements
1
5
/// a_int.pop();
5
/// a_int.pop();
1
/// a_int.push(-15, 32, true, false, "63");
5
/// (contents of a_int)...
5 elements
-15
32
1
0
63
/// b_int.pop();
16
/// b_int.pop();
5
/// b_int.pop();
0
/// var a_number: Vector.<Number> = new <Number>[1,2,3,4];
/// var b_number: Vector.<Number> = new <Number>[5, NaN, -5, 0];
/// a_number.pop();
4
/// a_number.pop();
3
/// a_number.push(-16, 3.2, 5, "test", true, false);
8
/// (contents of a_number...)
8 elements
1
2
-16
3.2
5
NaN
1
0
/// b_number.pop();
0
/// b_number.pop();
-5
/// b_number.push(NaN, "NaN", 0);
5
/// (contents of b_number...)
5 elements
5
NaN
NaN
NaN
0
/// var a_string: Vector.<String> = new <String>["a","c","d","f"];
/// var b_string: Vector.<String> = new <String>["986","B4","Q","rrr"];
/// a_string.pop();
f
/// a_string.pop();
d
/// a_string.pop();
c
/// a_string.pop();
a
/// a_string.pop();
undefined
/// a_string.push(123, {}, "abc", true, false);
5
/// (contents of a_string...)
5 elements
123
[object Object]
abc
true
false
/// b_string.pop();
rrr
/// b_string.push(NaN, -83.5);
5
/// (contents of b_string...)
5 elements
986
B4
Q
NaN
-83.5
/// var a_uint: Vector.<uint> = new <uint>[1,2];
/// var b_uint: Vector.<uint> = new <uint>[5,16];
/// a_uint.pop();
2
/// a_uint.pop();
1
/// a_uint.pop();
0
/// a_uint.push(0, -1, -2.5, "16", "NaN");
5
/// (contents of a_uint...)
5 elements
0
4294967295
4294967294
16
0
/// b_uint.pop();
16
/// b_uint.push(true, 15.23, "true");
4
/// (contents of b_uint...)
4 elements
5
1
15
0
/// var a_vector:Vector.<Vector.<int>> = new <Vector.<int>>[new <int>[1,2], new <int>[4,3]];
/// var b_vector:Vector.<Vector.<int>> = new <Vector.<int>>[new <int>[5,16], new <int>[19,8]];
/// (contents of a_vector.pop()...)
2 elements
4
3
/// (contents of a_vector.pop()...)
2 elements
1
2
/// a_vector.pop();
undefined
/// a_vector.push(new <int>[15,9], new <int>[-1,-94], new <int>[2], new <int>[16]);
4
/// (contents of a_vector...)
4 elements
/// (contents of index 0 )
2 elements
15
9
/// (contents of index 1 )
2 elements
-1
-94
/// (contents of index 2 )
1 elements
2
/// (contents of index 3 )
1 elements
16
/// (contents of b_vector.pop()...)
2 elements
19
8
/// b_vector.push(new <int>[-1,-94]);
2
/// (contents of b_vector...)
2 elements
/// (contents of index 0 )
2 elements
5
16
/// (contents of index 1 )
2 elements
-16
-4
/// b_vector.length = 6;
6
/// b_vector.pop()
null
/// (contents of b_vector...)
5 elements
/// (contents of index 0 )
2 elements
5
16
/// (contents of index 1 )
2 elements
-16
-4
null
null
null
