Subject: | More whitespace in examples could show "picture" of operations |
The following two examples show how reformatting could make a visual
presentation to better visualize the operations, allowing ASCII Art to
create a "picture" of the various Venn Diagram operations.
Some examples of the various set differences:
set or difference value
$a (a b c d e)
$b ( c d e f g)
$c ( e f g h i)
$a->difference($b) (a b)
$a->symmetric_difference($b) (a b f g)
$a->unique($b) (a b f g)
$b->difference($a) ( f g)
$b->symmetric_difference($a) (a b f g)
$b->unique($a) (a b f g)
$a->difference($b, $c) (a b)
$a->symmetric_difference($b, $c) (a b e h i)
$a->unique($b, $c) (a b h i)
================================================================
Some examples of the various set differences:
set or difference value
$a (a b c d e _ _ _ _)
$b (_ _ c d e f g _ _)
$c (_ _ _ _ e f g h i)
$a->difference($b) (a b _ _ _ _ _ _ _)
$a->symmetric_difference($b) (a b _ _ _ f g _ _)
$a->unique($b) (a b _ _ _ f g _ _)
$b->difference($a) (_ _ _ _ _ f g _ _)
$b->symmetric_difference($a) (a b _ _ _ f g _ _)
$b->unique($a) (a b _ _ _ f g _ _)
$a->difference($b, $c) (a b _ _ _ _ _ _ _)
$a->symmetric_difference($b, $c) (a b _ _ e _ _ h i)
$a->unique($b, $c) (a b _ _ _ _ _ h i)