PHP - Funzione Ds Set isEmpty ()

La funzione Ds \ Set :: isEmpty () può restituire se il set è vuoto.

Sintassi

public bool Ds\Set::isEmpty( void )

La funzione Ds \ Set :: isEmpty () non ha parametri.

La funzione Ds \ Set :: isEmpty () può restituire true se il set è vuoto o false in caso contrario.

Esempio 1

<?php  
   $set = new \Ds\Set();  
   var_dump($set);  
 
   if($set->isEmpty()) 
      echo "The set is empty";   
?>

Esempio 2

<?php  
   $set = new \Ds\Set(["Tutorials", "Point", "India"]);  
   var_dump($set);  
     
   if($set->isEmpty()==0) 
      echo "The set is not empty";
?>