You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
926 B
27 lines
926 B
(*
|
|
* Copyright (c) 2015 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*)
|
|
|
|
type model_table_t = (string, bool * bool list) Hashtbl.t
|
|
|
|
(** Name of this file. *)
|
|
val this_file : string
|
|
|
|
val annotated_table_nullable : model_table_t
|
|
val annotated_table_present : model_table_t
|
|
val annotated_table_strict : model_table_t
|
|
val check_not_null_table : model_table_t
|
|
val check_not_null_parameter_table : (string, int) Hashtbl.t
|
|
val check_state_table : model_table_t
|
|
val check_argument_table : model_table_t
|
|
val containsKey_table : model_table_t
|
|
val mapPut_table : model_table_t
|
|
val optional_get_table : model_table_t
|
|
val optional_isPresent_table : model_table_t
|
|
val true_on_null_table : model_table_t
|