Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 671 Bytes

Null.md

File metadata and controls

28 lines (18 loc) · 671 Bytes

Null

class Null

Required header: <Eclog/Null.h>

The Null class represents a null.

Member functions

Name Description
operator== Returns true.
operator!= Returns false.

operator== and operator!=

bool operator==(const Null&) const;                                 (1)
bool operator!=(const Null&) const;                                 (2)

Null has only one value, which is null; therefore, (1) always returns true, and (2) always returns false.