blob: cb420eec7cb646689962f26fa1d741c918bcc3d6 [file] [log] [blame]
#
# Copyright (c) 2020 Project CHIP Authors
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
class Nullable():
def __repr__(self):
return 'Null'
def __eq__(self, other):
if isinstance(other, Nullable):
return True
return False
def __ne__(self, other):
return not self.__eq__(other)
def __lt__(self, other):
return True
def __hash__(self):
''' Explicitly implement __hash__() to imply immutability when used in
dataclasses.
See also: https://docs.python.org/3/library/dataclasses.html#dataclasses.dataclass
'''
return 0
NullValue = Nullable()