https://github.com/pharo-containers/Containers-RunArray
A runarray is a collection optimized for sequence of repeating values.
https://github.com/pharo-containers/Containers-RunArray
Last synced: 25 days ago
JSON representation
A runarray is a collection optimized for sequence of repeating values.
- Host: GitHub
- URL: https://github.com/pharo-containers/Containers-RunArray
- Owner: pharo-containers
- Created: 2020-12-13T14:28:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-01T20:50:34.000Z (over 4 years ago)
- Last Synced: 2025-04-09T09:42:11.534Z (about 2 months ago)
- Language: Smalltalk
- Size: 187 KB
- Stars: 1
- Watchers: 5
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-pharo - RunArray
README
[](https://img.shields.io/badge/license-MIT-blue.svg)


[](https://coveralls.io/github/pharo-containers/Containers-RunArray?branch=master)# Containers-RunArray
A runarray is a collection optimized for sequence of repeating values.## Loading
The following script installs Containers-RunArray in Pharo.```smalltalk
Metacello new
baseline: 'ContainersRunArray';
repository: 'github://pharo-containers/Containers-RunArray/src';
load.
```## If you want to depend on it
Add the following code to your Metacello baseline or configuration
```smalltalk
spec
baseline: 'ContainersRunArray'
with: [ spec repository: 'github://pharo-containers/Containers-RunArray/src' ].
```