-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
74 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package templates | ||
|
||
func mod(lhs, rhs int) int { | ||
return lhs % rhs | ||
} | ||
|
||
func add(lhs, rhs int) int { | ||
return lhs + rhs | ||
} | ||
|
||
func sub(lhs, rhs int) int { | ||
return lhs - rhs | ||
} | ||
|
||
func umod(lhs, rhs uint) uint { | ||
return lhs % rhs | ||
} | ||
|
||
func uadd(lhs, rhs uint) uint { | ||
return lhs + rhs | ||
} | ||
|
||
func usub(lhs, rhs uint) uint { | ||
return lhs - rhs | ||
} | ||
|
||
func mod64(lhs, rhs int64) int64 { | ||
return lhs % rhs | ||
} | ||
|
||
func add64(lhs, rhs int64) int64 { | ||
return lhs + rhs | ||
} | ||
|
||
func sub64(lhs, rhs int64) int64 { | ||
return lhs - rhs | ||
} | ||
|
||
func umod64(lhs, rhs uint64) uint64 { | ||
return lhs % rhs | ||
} | ||
|
||
func uadd64(lhs, rhs uint64) uint64 { | ||
return lhs + rhs | ||
} | ||
|
||
func usub64(lhs, rhs uint64) uint64 { | ||
return lhs - rhs | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters