X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add implementation in GemStone for Integer>>greaseByteAt: and Integer…
…>>greaseByteCount on SmallInteger and LargeInteger
  • Loading branch information
Johan Brichau committed Oct 30, 2023
commit 4c66a68da78ca0fd16de4cebd8fd436ccd0fe803
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*grease-gemstone-core
greaseByteAt: index

^ self digitAt: index
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*grease-gemstone-core
greaseByteCount

^ self digitLength
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "LargeInteger" }
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*grease-gemstone-core
greaseByteAt: index

^ self digitAt: index
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*grease-gemstone-core
greaseByteCount

^ self digitLength
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "SmallInteger" }
X Tutup