Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
janmasrovira committed Jan 21, 2025
1 parent 11e4bf3 commit f69fd3e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Anoma/Builtin/ByteArray.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,4 @@ ByteArray-Ord : Ord ByteArray :=
instance
ByteArray-Eq : Eq ByteArray := fromOrdToEq;

zero (length : Nat) : ByteArray :=
mkByteArray
replicate@{
resultLength := length;
value := 0x0;
};
zero (length : Nat) : ByteArray := mkByteArray (replicate length 0x0);

0 comments on commit f69fd3e

Please sign in to comment.