Skip to content

Commit

Permalink
Understandable, have a nice unspecified
Browse files Browse the repository at this point in the history
  • Loading branch information
RblSb committed Mar 1, 2023
1 parent 59a0d87 commit 8f3a88a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/unit/src/unitstd/haxe/ds/Vector.unit.hx
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,15 @@ var vec5 = haxe.ds.Vector.createFilled(3, 5);
vec5[0] == 5;
vec5[1] == 5;
vec5[2] == 5;
vec5[3] == vNullInt;
vec5.fill(1);
vec5[0] == 1;
vec5[1] == 1;
vec5[2] == 1;
vec5[3] == vNullInt;

var vec5 = haxe.ds.Vector.createFilled(3, true);
vec5[0] == true;
vec5[1] == true;
vec5[2] == true;
vec5[3] == vNullBool;

var vec5 = haxe.ds.Vector.fromArrayCopy([0,1,2,3,4]);
haxe.ds.Vector.blit(vec5, 0, vec5, 1, 4);
Expand Down

0 comments on commit 8f3a88a

Please sign in to comment.