fifo

Version, currently master branch1 version
  • master branchlatestOct 28, 2021

github.com/alexherbo2/fifo.cr

A Crystal library for using FIFOs

1 stars
1 dependent
License: Unlicense

Installation

# Add this to your shard.yml
dependencies:
  fifo:
    github: alexherbo2/fifo.cr
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
1.0.0
License
Unlicense

Dependencies

This version declares no dependencies.

README

# fifo.cr

fifo.cr is a [Crystal] library for using [FIFOs][FIFO].

[Crystal]: https://crystal-lang.org
[FIFO]: https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics)

## Dependencies

- [Crystal]

## Installation

1. Add the dependency to your `shard.yml`:

``` yaml
dependencies:
  fifo:
    github: alexherbo2/fifo.cr
```

2. Run `shards install`.

## Usage

``` crystal
require "fifo"
```

See [`src/fifo.cr`] for a complete reference.

[`src/fifo.cr`]: src/fifo.cr