add missing @since annotations, updated authors

This commit is contained in:
Simon Cruanes 2014-11-30 18:30:11 +01:00
parent 927246659b
commit e6aabf0d77
3 changed files with 10 additions and 3 deletions

View file

@ -1,8 +1,9 @@
# Authors and contributors # Authors and contributors
- Simon Cruanes - Simon Cruanes (companion_cube)
- Drup (Gabriel Radanne) - Drup (Gabriel Radanne)
- Jacques-Pascal Deplaix - Jacques-Pascal Deplaix
- Nicolas Braud-Santoni - Nicolas Braud-Santoni
- Whitequark (Peter Zotov) - Whitequark (Peter Zotov)
- hcarty (Hezekiah M. Carty) - hcarty (Hezekiah M. Carty)
- struktured (Carmelo Piccione)

View file

@ -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. 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 t = float
type fpclass type fpclass

View file

@ -89,11 +89,16 @@ val int_range : int -> int -> int t
(** Inclusive range *) (** Inclusive range *)
val small_float : float t val small_float : float t
(** A reasonably small float.
@since NEXT_RELEASE *)
val float : float -> float t val float : float -> float t
(** Random float within the given range
@since NEXT_RELEASE *)
val float_range : float -> float -> float t val float_range : float -> float -> float t
(** Inclusive range *) (** Inclusive range
@since NEXT_RELEASE *)
val split : int -> (int * int) option t val split : int -> (int * int) option t