Skip to content

Commit

Permalink
abstraction of bitrotation operations
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlano authored Aug 23, 2024
1 parent 3235439 commit 83e8e71
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cg/cgJava2UML.cstl
Original file line number Diff line number Diff line change
Expand Up @@ -1374,6 +1374,7 @@ Integer . MAX_VALUE |-->2147483647
Integer . MIN_VALUE |-->-2147483648
Integer . SIZE |-->32
Integer . TYPE |-->0->oclType()

int . class |-->0->oclType()

Integer . _1 |-->_1`integerMethodCall
Expand Down Expand Up @@ -1797,6 +1798,9 @@ valueOf ( _1 ) |-->(_1`first)->toInteger()
toBinaryString ( _1 ) |-->(MathLib.decimal2binary(_1) + "")
toHexString ( _1 ) |-->(MathLib.decimal2hex(_1) + "")
toOctalString ( _1 ) |-->(MathLib.decimal2octal(_1) + "")
rotateRight ( _1 ) |-->MathLib.bitwiseRotateRight(_1)
rotateLeft ( _1 ) |-->MathLib.bitwiseRotateLeft(_1)


_1 ( ) |-->_1()
_1 ( _2 ) |-->_1(_2)
Expand Down

0 comments on commit 83e8e71

Please sign in to comment.