Nothing
arb_const_pi <-
function (prec = flintPrec()) {
res <- flintNew("arb")
.Call(R_flint_arb_const_pi, res, as(prec, "slong"))
res
}
arb_const_log2 <-
function (prec = flintPrec()) {
res <- flintNew("arb")
.Call(R_flint_arb_const_log2, res, as(prec, "slong"))
res
}
arb_const_log10 <-
function (prec = flintPrec()) {
res <- flintNew("arb")
.Call(R_flint_arb_const_log10, res, as(prec, "slong"))
res
}
arb_const_e <-
function (prec = flintPrec()) {
res <- flintNew("arb")
.Call(R_flint_arb_const_e, res, as(prec, "slong"))
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.