https://github.com/hernanmd/orderedset
OrderedSet for Pharo Smalltalk
https://github.com/hernanmd/orderedset
collection ordered-set pharo pharo-smalltalk smalltalk
Last synced: 12 months ago
JSON representation
OrderedSet for Pharo Smalltalk
- Host: GitHub
- URL: https://github.com/hernanmd/orderedset
- Owner: hernanmd
- License: mit
- Created: 2018-08-31T18:53:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-17T18:08:23.000Z (almost 5 years ago)
- Last Synced: 2025-01-03T21:42:25.565Z (about 1 year ago)
- Topics: collection, ordered-set, pharo, pharo-smalltalk, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OrderedSet
# Installation
```smalltalk
Metacello new
baseline: 'OrderedSet';
repository: 'github://hernanmd/OrderedSet/repository';
load
```
# Baseline String
If you want to add the OrderedSet to your Metacello Baselines or Configurations, copy and paste the following expression:
```smalltalk
" ... "
spec
baseline: 'OrderedSet'
with: [ spec repository: 'github://hernanmd/OrderedSet/repository' ];
" ... "
```