package KaSim

  1. Overview
  2. Docs
type !'a t = {
  1. story_id : int;
  2. story_time : float;
  3. story_event : int;
  4. profiling_info : 'a;
}
val compare_by_story_id : 'a t -> 'a t -> int
val update_profiling_info : 'a -> 'b t -> 'a t
val event : 'a t -> int
val story_id : 'a t -> int
val to_json : ('a -> Yojson.Basic.json) -> 'a t -> Yojson.Basic.json
val of_json : (Yojson.Basic.json -> 'a) -> Yojson.Basic.json -> 'a t