package coq-core

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Memprof_coq.Resource_bindSource

Open Memprof_limits.Resource_bind to enable the let& binder for resources.

Sourceval (let&) : (scope:('a -> 'b) -> 'b) -> ('a -> 'b) -> 'b

RAII-style notation for resources cleaned-up at the end of scope. Example:

open Memprof_limits.Resource_bind

  let with_my_resource x =
    Memprof_limits.Masking.with_resource ~acquire x ~release

  let f x =
    let& resource = with_my_resource x in
    …
OCaml

Innovation. Community. Security.