Skip to content

Commit

Permalink
Update Int64.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeGuyWhoLovesCoding authored Sep 2, 2024
1 parent a4e98fc commit 9965db8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions std/haxe/Int64.hx
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,16 @@ class Int128Helper {
This is handy for type comparison.
*/
public static var minValue32:Int128 = Int128.ofInt64(Int64Helper.minValue32);

/**
The maximum unsigned `Int32` value with the type `Int128`.
This is handy for type comparison.
*/
public static var maxValue32U:Int128 = Int128.make(0, -1);

/**
The minimum unsigned `Int32` value with the type `Int128`.
This is handy for type comparison.
*/
public static var minValue32U:Int128 = Int128.make(0, -1);
}

0 comments on commit 9965db8

Please sign in to comment.