Spaeは、C++乱数ライブラリです。「スペイ」と読みます。
このライブラリは、用途ごとの乱数ユーティリティを提供することを目標としています。
- 整数のさまざまな範囲を一様分布させる
- 整数には、列挙型も含む
- 範囲からの選択機能を持つ
- 目的ごとにインスタンスを持つことを意図している(標準ではデフォルトのインスタンスのみ提供する)
- 暗号論的ではない
- 状態の復元を意図していない
==
Spae is C++ random library.
The library goal is provide random utilities for different use case.
- Uniform distibute for difference range of integral types.
- The integral types includes enumerate type.
- The class has select element from range.
- The class intent difference instance for difference purpose.
- The class is not cryptographic.
- The class not intent restore state.