Skip Menu |

This queue is for tickets about the Set-Scalar CPAN distribution.

Report information
The Basics
Id: 54173
Status: resolved
Priority: 0/
Queue: Set-Scalar

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



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. It allows users to use their visual processing to aid their logical, algebraic processing. 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)
Unfortunately, RT took away the formatting I was intending to show. Fortunately, POD will not do that. See attachment...
Subject: Set-Scalar_example_formatting.txt
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)
Will be fixed in 1.26.