mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 20:08:22 +01:00
7 lines
133 B
Smalltalk
7 lines
133 B
Smalltalk
|
Extension { #name : #Array }
|
||
|
|
||
|
{ #category : #'*Diya' }
|
||
|
Array >> asPoint [
|
||
|
^ (self at: 1 ifAbsent:[0]) @ (self at: 2 ifAbsent:[0])
|
||
|
]
|