package gobject-introspection

  1. Overview
  2. Docs
include module type of struct include Function_info end
type flags =
  1. | Is_method
    (*

    is a method.

    *)
  2. | Is_constructor
    (*

    is a constructor.

    *)
  3. | Is_getter
    (*

    is a getter of a Property_info.

    *)
  4. | Is_setter
    (*

    is a setter of a Property_info.

    *)
  5. | Wraps_vfunc
    (*

    represents a virtual function.

    *)
  6. | Throws
    (*

    the function may throw an error.

    *)

Flags for a Function_info struct.

val string_of_flag : flags -> string
module Flags (T : Cstubs.Types.TYPE) : sig ... end