X Tutup
Skip to content

Commit 3a4e4bc

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#161 from theseion/add-integer-greaseasbytearray
Add #greaseAsByteArray and implementation for Squeak
2 parents 05a6c4e + f7d9822 commit 3a4e4bc

File tree

138 files changed

+722
-276
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+722
-276
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*Grease-Core
2+
greaseAsByteArray
3+
^ self asByteArray
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name" : "Collection"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
encoding
2+
integerAsByteArray: anInteger
3+
^ anInteger asByteArray
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*Grease-Core
2+
greaseAsByteArray
3+
^ GRPlatform current integerAsByteArray: self
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*Grease-Core
2+
greaseByteAt: index
3+
^ self subclassResponsibility
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*Grease-Core
2+
greaseBytesCount
3+
^ self subclassResponsibility
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*grease-gemstone-core
2+
greaseByteAt: index
3+
4+
^ self digitAt: index
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*grease-gemstone-core
2+
greaseBytesCount
3+
4+
^ self digitLength
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
"name" : "LargeInteger" }
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*grease-gemstone-core
2+
greaseByteAt: index
3+
4+
^ self digitAt: index

0 commit comments

Comments
 (0)
X Tutup