module Bootstrap:sig..end
type estimate = {
   | 
point : | 
(* | Point estimate. | *) | 
   | 
lower_bound : | 
(* | Lower bound of the estimate confidence interval | *) | 
   | 
upper_bound : | 
(* | Upper bound of the estimate confidence interval | *) | 
   | 
confidence_level : | 
(* | Condifence level corresponding to the above intervals. | *) | 
val bca : ?rng:Gsl.Rng.t ->
       ?confidence_level:float ->
       estimator:(float array -> float) ->
       n_iter:int -> float array -> estimate