added more X11 code

This commit is contained in:
hyunghwan.chung
2017-06-27 16:03:29 +00:00
parent 979040e7b3
commit a2877ac905
4 changed files with 113 additions and 69 deletions

View File

@ -719,9 +719,15 @@ class LinkedList(Collection)
}
}
method findLink: value
method findEqualLink: value
{
self doOverLink: [:el | if (el value = value) { ^el }].
^Error.Code.ENOENT
}
method findIdenticalLink: value
{
self doOverLink: [:el | if (el value == value) { ^el }].
^Error.Code.ENOENT
}
}