Smalltalk/X WebserverDocumentation of class 'HistoryCollectionWithoutDuplicates': | |
Class: HistoryCollectionWithoutDuplicatesInheritance:Object | +--Collection | +--SequenceableCollection | +--HistoryCollection | +--HistoryCollectionWithoutDuplicates
Description:similar to HistoryCollection, but I will remove duplicate entries. Useful for history of recently visited files/folders |h| h := HistoryCollectionWithoutDuplicates new:10. h addAll:(1 to:10). Transcript showCR:h. h add:4. h add:5. Transcript showCR:h. h addAll:(11 to:15). h add:11. h add:12. Transcript showCR:h. Instance protocol:adding private |
|
ST/X 7.7.0.0; WebServer 1.702 at 20f6060372b9.unknown:8081; Mon, 18 Nov 2024 06:43:12 GMT |