Skip to content

Commit 0d4ff94

Browse files
committed
Added Array2D class since it was deleted in Pharo 12
1 parent 6caf913 commit 0d4ff94

11 files changed

+1196
-405
lines changed

src/DataFrame/Array.extension.st

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Extension { #name : #Array }
1+
Extension { #name : 'Array' }
22

3-
{ #category : #'*DataFrame' }
3+
{ #category : '*DataFrame' }
44
Array >> calculateDataType [
55

66
| types |
@@ -18,7 +18,7 @@ Array >> calculateDataType [
1818
^ UndefinedObject
1919
]
2020

21-
{ #category : #'*DataFrame' }
21+
{ #category : '*DataFrame' }
2222
Array >> leastCommonSuperclassOf: firstClass and: secondClass [
2323
"Determines the closest element of class hierarchy which is the common ancestor of two given classes"
2424

@@ -40,7 +40,7 @@ Array >> leastCommonSuperclassOf: firstClass and: secondClass [
4040
^ Object
4141
]
4242

43-
{ #category : #'*DataFrame' }
43+
{ #category : '*DataFrame' }
4444
Array >> sortIfPossible [
4545
"Sort if possible"
4646

0 commit comments

Comments
 (0)