Skip to content

Commit

Permalink
update std::math::big
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Aug 23, 2024
1 parent e13275b commit b3119a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/std/math-big.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ Modulo two Int and returns result.
`fn ModAssign(mut self, y: Int)`\
Modulo Int.

`fn Shl(self, y: uint): Int`\
`fn Shl(self, y: int): Int`\
Bitwise left shift.

`fn ShlAssign(mut self, y: uint)`\
`fn ShlAssign(mut self, y: int)`\
Bitwise left shift for assignment.

`fn Shr(self, y: uint): Int`\
`fn Shr(self, y: int): Int`\
Bitwise right shift.

`fn ShrAssign(mut self, y: uint)`\
`fn ShrAssign(mut self, y: int)`\
Bitwise right shift for assignment.

`fn BitOr(self, y: Int): Int`\
Expand Down

0 comments on commit b3119a3

Please sign in to comment.