| 
 | Ds\Set::diffCreates a new set using values that aren't in another set Description
   public Ds\Set Ds\Set::diff(Ds\Set  $set)Creates a new set using values that aren't in another set. 
     Parameters
 Return Values
    A new set containing all values that were not in the other  ExamplesExample #1 Ds\Set::diff example The above example will output something similar to: 
object(Ds\Set)#3 (2) {
  [0]=>
  int(1)
  [1]=>
  int(2)
}
 |