IdentitySkipList.st
author Claus Gittinger <cg@exept.de>
Sat, 02 May 2020 21:40:13 +0200
changeset 5476 7355a4b11cb6
parent 4397 dd62ed6075b2
permissions -rw-r--r--
#FEATURE by cg class: Socket class added: #newTCPclientToHost:port:domain:domainOrder:withTimeout: changed: #newTCPclientToHost:port:domain:withTimeout:

"{ Package: 'stx:libbasic2' }"

"{ NameSpace: Smalltalk }"

SkipList subclass:#IdentitySkipList
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Collections-Ordered-Trees'
!

IdentitySkipList comment:'Like a SkipList, except that elements are compared with #== instead of #= .

See the comment of IdentitySet for more information.
'
!

!IdentitySkipList class methodsFor:'documentation'!

documentation
"
    Like a SkipList, except that elements are compared with #== instead of #= .

    See the comment of IdentitySet for more information.
"
! !

!IdentitySkipList methodsFor:'element comparison'!

is: element1 equalTo: element2
	^ element1 == element2
! !

!IdentitySkipList class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !