|
| 1 | +(** Ready-to-use modules for replacing the default pervasives, using [-open]. *) |
| 2 | + |
| 3 | +module Hide_stdlib_variants = struct |
| 4 | + (** Prevent access to the full variant library. Intended to be opened at the top level |
| 5 | + to hide the [Stdlib_variants] module, and a couple others. |
| 6 | + |
| 7 | + This is included in the other overrides modules, so you usually don't need |
| 8 | + to pass it to the [-open] flag yourself. However, you should use it |
| 9 | + if you define your own override module based on less-power stdlib variants. *) |
| 10 | + |
| 11 | + (** {i These modules are intentionally empty.} *) |
| 12 | + |
| 13 | + module Stdlib_variants = struct end |
| 14 | + |
| 15 | + (* Shouldn't be necessary with (implicit_transitive_deps false), but to be safe... *) |
| 16 | + module Stdlib_components = struct end |
| 17 | + module Stdlib_alerts = struct end |
| 18 | + module Threads_alerts = struct end |
| 19 | + |
| 20 | +end |
| 21 | + |
| 22 | + |
| 23 | +(** Puts the safe parts of [Stdlib] into scope, |
| 24 | + from {!Stdlib_components.Stdlib_safe} *) |
| 25 | +module Stdlib_safe = struct |
| 26 | + |
| 27 | + module Stdlib = Stdlib_components.Stdlib_safe |
| 28 | + include Stdlib_components.Stdlib_safe |
| 29 | + |
| 30 | + include Hide_stdlib_variants |
| 31 | +end |
| 32 | + |
| 33 | +(** Puts an alerting [Stdlib] into scope, |
| 34 | + from {!Stdlib_alerts.Stdlib_alerting}. *) |
| 35 | +module Stdlib_alerting = struct |
| 36 | + |
| 37 | + module Stdlib = Stdlib_alerts.Stdlib_alerting |
| 38 | + include Stdlib_alerts.Stdlib_alerting |
| 39 | + |
| 40 | + include Hide_stdlib_variants |
| 41 | +end |
0 commit comments