diff --git a/AUTHORS.md b/AUTHORS.md index 1ff14f65..3c8c8d77 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -1,8 +1,9 @@ # Authors and contributors -- Simon Cruanes +- Simon Cruanes (companion_cube) - Drup (Gabriel Radanne) - Jacques-Pascal Deplaix - Nicolas Braud-Santoni - Whitequark (Peter Zotov) - hcarty (Hezekiah M. Carty) +- struktured (Carmelo Piccione) diff --git a/core/CCFloat.mli b/core/CCFloat.mli index 5e91191e..a2419e04 100644 --- a/core/CCFloat.mli +++ b/core/CCFloat.mli @@ -23,7 +23,8 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) -(** {1 Basic Float functions} *) +(** {1 Basic Float functions} +@since NEXT_RELEASE *) type t = float type fpclass diff --git a/core/CCRandom.mli b/core/CCRandom.mli index 439cc25c..254538d4 100644 --- a/core/CCRandom.mli +++ b/core/CCRandom.mli @@ -89,11 +89,16 @@ val int_range : int -> int -> int t (** Inclusive range *) val small_float : float t +(** A reasonably small float. + @since NEXT_RELEASE *) val float : float -> float t +(** Random float within the given range + @since NEXT_RELEASE *) val float_range : float -> float -> float t -(** Inclusive range *) +(** Inclusive range + @since NEXT_RELEASE *) val split : int -> (int * int) option t