package ecaml

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

Source file eval.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
open! Core_kernel
open! Import

module Q = struct
  let eval_after_load = "eval-after-load" |> Symbol.intern
end

let after_load here feature ~f =
  let fn =
    Function.create here ~args:[] (fun _ ->
      f ();
      Value.nil)
  in
  Form.(
    Blocking.eval_i
      (list
         [ symbol Q.eval_after_load
         ; quote (feature |> Symbol.to_value)
         ; quote (fn |> Function.to_value)
         ]))
;;
OCaml

Innovation. Community. Security.