Skip to content

Commit

Permalink
Added Array2D class since it was deleted in Pharo 12
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt committed Aug 27, 2024
1 parent 6caf913 commit 0d4ff94
Show file tree
Hide file tree
Showing 11 changed files with 1,196 additions and 405 deletions.
8 changes: 4 additions & 4 deletions src/DataFrame/Array.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #Array }
Extension { #name : 'Array' }

{ #category : #'*DataFrame' }
{ #category : '*DataFrame' }
Array >> calculateDataType [

| types |
Expand All @@ -18,7 +18,7 @@ Array >> calculateDataType [
^ UndefinedObject
]

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

Expand All @@ -40,7 +40,7 @@ Array >> leastCommonSuperclassOf: firstClass and: secondClass [
^ Object
]

{ #category : #'*DataFrame' }
{ #category : '*DataFrame' }
Array >> sortIfPossible [
"Sort if possible"

Expand Down
Loading

0 comments on commit 0d4ff94

Please sign in to comment.