OCLOperators Empty
m ((username removed) (log details removed): Moving to Documentation namespace)
(Automatically adding template at the end of the page.)
 
Line 17: Line 17:


This will return true if "string1" is empty, and false otherwise.
This will return true if "string1" is empty, and false otherwise.
{{Edited|July|12|2024}}

Latest revision as of 15:38, 10 February 2024

The Empty operator is a Boolean operator that is used to check if a collection or string is empty or not. It returns true if the collection or string has no elements, and false otherwise. It can be used with any collection type, including sets, sequences, and bags, as well as with strings.

Here are a few examples of how the Empty operator can be used:

  1. Checking if a sequence is empty:
sequence1.empty()

This will return true if "sequence1" is empty, and false otherwise.

2. Checking if a set is empty:

set1.empty()

This will return true if "set1" is empty, and false otherwise.

3. Checking if a string is empty:

string1.empty()

This will return true if "string1" is empty, and false otherwise.

This page was edited 97 days ago on 02/10/2024. What links here