TryToClear - ReferenceAlias
Revision as of 04:14, 23 January 2021 by imported>Nitor (→Examples: Corrected function (Clear -> TryToClear))
Member of: ReferenceAlias Script
Clears this alias and returns whether anything was in it to begin with.
Syntax[edit | edit source]
bool Function TryToClear()
Parameters[edit | edit source]
None
Return Value[edit | edit source]
Whether the alias had a reference in it when it was cleared or not.
Examples[edit | edit source]
; Clear the alias
if OptionalAlias.TryToClear()
Debug.Trace("Removed something from the alias")
else
Debug.Trace("Didn't remove anything from the alias (already empty)")
endIf