package reddit_api_kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Comment
  2. | User
  3. | Message
  4. | Subreddit
  5. | Award
  6. | More_comments
  7. | Modmail_conversation
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool
include Core_kernel.Stringable.S with type t := t
val of_string : string -> t
val to_string : t -> string
val to_string_long : t -> string
val of_polymorphic_tag : [< `Award of _ | `Comment of _ | `Link of _ | `Message of _ | `Modmail_conversation of _ | `More_comments of _ | `Subreddit of _ | `User of _ ] -> t
val of_polymorphic_tag_with_uniform_data : [< `Award of 'data | `Comment of 'data | `Link of 'data | `Message of 'data | `Modmail_conversation of 'data | `More_comments of 'data | `Subreddit of 'data | `User of 'data ] -> t * 'data
val to_polymorphic_tag : t -> data:'data -> award:('data -> 'award) -> comment:('data -> 'comment) -> link:('data -> 'link) -> message:('data -> 'message) -> modmail_conversation:('data -> 'modmail_conversation) -> more_comments:('data -> 'more_comments) -> subreddit:('data -> 'subreddit) -> user:('data -> 'user) -> [> `Award of 'award | `Comment of 'comment | `Link of 'link | `Message of 'message | `Modmail_conversation of 'modmail_conversation | `More_comments of 'more_comments | `Subreddit of 'subreddit | `User of 'user ]
val to_polymorphic_tag_uniform : t -> data:'data -> [> `Award of 'data | `Comment of 'data | `Link of 'data | `Message of 'data | `Modmail_conversation of 'data | `More_comments of 'data | `Subreddit of 'data | `User of 'data ]