query
On this page

mkInt32

lib.gvariant.mkInt32

Docs pulled from | This Revision | 10 minutes ago


Returns the GVariant int32 from the given Nix int value.

Inputs

v

1. Function argument

Type

mkInt32 :: Int -> gvariant

Noogle detected

Implementation

The following is the current implementation of this function.

mkInt32 =
    v:
    mkPrimitive type.int32 v
    // {
      __toString = self: toString self.value;
    };