nilsbecker

Results 53 issues of nilsbecker

the signature ```ocaml val scan: ?axis:int -> ('a -> 'a -> 'a) -> ('a, 'b) Dense.Ndarray.Generic.t -> ('a, 'b) Dense.Ndarray.Generic.t ``` is not the most general. a more general one...

enhancement

this example should not allocate: ``` using LinearAlgebra, DifferentialEquations, DiffEqGPU A = Float32[1. 0 0 -5; 4 -2 4 -3; -4 0 0 1; 5 -2 2 3] u0 =...

upstream

in utop i get this: #require "containers.top";; CCHashtbl.pp has a wrong type for a printing function.

enhancement
easy
help_wanted

https://github.com/c-cube/ocaml-containers/blob/447df826f12a2da70f57531cee25190a3fabcc72/src/core/CCRandom.ml#L207 here an internal `__default_state` is created with a random seed, which is later used by default in the `run` functions. this default state is different from the one in...

enhancement
question
api issue

this is the behavior of the bare ocaml toplevel. is this intended also for utop? i noticed this when starting utop from my home directory, which contains a .ocamlinit. starting...

a minor feature request: the fancy utop prompt already displays number arguments to commands in vi editing mode. it would make sense to add a mode indicator as well: insert...

This was already discussed in #149 . With the current directive API, some helpful ones seem already possible. I would propose - `#ls` to list the current directory contents; maybe...

sometimes long output is undesired in an interactive session. it would be nice to have some syntax to suppress it on a per-evaluation basis. for example. `;;;` instead of `;;`...

it would be great to see which of the completion suggestions are actual values and which ones are types. e.g. by the use of color. when exploring the interface of...

it would be cool if utop knew how to autocomplete `Module.(somefun x)` in all cases where `Module.somefun x` already works. this would need to work after the opening parenthesis, since...