Skip to content

Commit

Permalink
Update Int64Helper.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeGuyWhoLovesCoding authored Sep 4, 2024
1 parent 052021e commit fc5a0d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/haxe/Int64Helper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class Int64Helper {
/**
The minimum `Int64` value.
*/
public static var minValue:Int64 = Int64.complement(maxValue);
public static var minValue:Int64 = ~maxValue;

/**
The maximum `Int32` value with the type `Int64`.
Expand All @@ -135,7 +135,7 @@ class Int64Helper {
The minimum `Int32` value with the type `Int64`.
This is handy for type comparison.
*/
public static var minValue32:Int64 = Int64.complement(maxValue32);
public static var minValue32:Int64 = ~maxValue32;

/**
The maximum unsigned `Int32` value with the type `Int64`.
Expand Down

0 comments on commit fc5a0d6

Please sign in to comment.