query
On this page

mkInt64

lib.gvariant.mkInt64

Docs pulled from | This Revision | about 3 hours ago


Nixpkgs manual

Returns the GVariant int64 from the given Nix int value.

Type

mkInt64 :: Int -> GVariant

Noogle detected

Implementation

The following is the current implementation of this function.

v: {
    _type = "gvariant";
    type = t;
    value = v;
    __toString = self: "@${self.type} ${toString self.value}"; # https://docs.gtk.org/glib/gvariant-text.html
  }