项目作者: coderme

项目描述 :
Golang FILO, A First In Last Out infinitly growable and concurrent Memory stack (channels alternative).
高级语言: Go
项目地址: git://github.com/coderme/filo.git
创建时间: 2019-02-03T08:37:29Z
项目社区:https://github.com/coderme/filo

开源协议:ISC License

下载


FILO

  • A First In Last Out infinitly growable and concurrent Memory stack (channels alternative) for Golang.

Features

  • Concurrency-safe.
  • Infinite, no size limit of the data stored in the stack.
  • Can be used where FILO model is needed rather than FIFO (The default model found Channels).
  • Generic stack for complex types.
  • Special stack for string, float64 and int type.

Installation

  • Use the go get as go get github.com/coderme/filo
  • Or clone this repo into $GOPATH/github.com/coderme

Usage

  • Import the pkg import "github.com/coderme/filo"

License

  • See LICENSE.