Next: , Previous: uint64, Up: Top   [Contents]


108 unit

%--------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%--------------------------------------------------%
% Copyright (C) 1994-2006 The University of Melbourne.
% Copyright (C) 2014-2015, 2018 The Mercury team.
% This file is distributed under the terms specified in COPYING.LIB.
%--------------------------------------------------%
%
% File: unit.m.
% Main author: fjh.
% Stability: high.
%
% The "unit" type -  stores no information at all.
%
%--------------------------------------------------%
%--------------------------------------------------%

:- module unit.
:- interface.

%--------------------------------------------------%

:- type unit
    --->    unit.

:- type unit(T)
    --->    unit1.

%--------------------------------------------------%
:- end_module unit.
%--------------------------------------------------%