Go to file
Demi M. Obenour a479b7ccbf Fixes used by VDF 2019-01-10 11:56:46 -05:00
src Fixes used by VDF 2019-01-10 11:56:46 -05:00
.gitignore Ignore Vim swap files. 2016-11-13 14:35:03 +11:00
.travis.yml Added commands installing libgmp to Travis 2015-07-21 11:31:24 +02:00
Cargo.toml Version bump 2017-05-27 18:38:12 +02:00
LICENSE add the license file 2014-10-24 22:56:21 -04:00
README.md Add documentation links. 2016-11-13 11:19:11 +11:00

README.md

Build Status

Documentation

The following functions are intentionally left out of the bindings:

  • gmp_randinit (not thread-safe, obsolete)
  • mpz_random (not thread-safe, obsolete)
  • mpz_random2 (not thread-safe, obsolete)
  • mpf_set_default_prec (not thread-safe)
  • mpf_get_default_prec (not thread-safe)
  • mpf_init (not thread-safe)
  • mpf_inits (not thread-safe, va_list wrapper)
  • mpf_clears (va_list wrapper)
  • mpf_swap (no better than rust's swap)
  • mpf_set_prec_raw (could be exposed with an unsafe function if needed)
  • mpz_inits (va_list wrapper)
  • mpz_clears (va_list wrapper)
  • mpz_swap (no better than rust's swap)
  • mpq_inits (va_list wrapper)
  • mpq_clears (va_list wrapper)
  • mpq_swap (no better than rust's swap)