blob: 6e72fd1a17accf6a12bddb162fa7a84af7a07f6c (
plain)
1
2
3
4
5
6
7
8
|
function r = Unset()
% Unset - This function returns a singleton instance that we use as a
% sentinel value to indicate an unset optional value.
% Copyright (c) ZeroC, Inc. All rights reserved.
r = IceInternal.UnsetI.getInstance();
end
|