Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created May 24, 2017 00:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/8eb24ab626611bcfbd2b85ac578010a8 to your computer and use it in GitHub Desktop.
Save Whateverable/8eb24ab626611bcfbd2b85ac578010a8 to your computer and use it in GitHub Desktop.
greppable6
Binary file PostCocoon/P6-TagLibC/t/test.mp3 matches
perl6/doc/doc/Language/setbagmix.pod6:194:=head3 infix (<)
perl6/doc/doc/Language/setbagmix.pod6:196: multi sub infix:<<(<)>>(Any $a, Any $b --> Bool)
perl6/doc/doc/Language/setbagmix.pod6:197: multi sub infix:<<(<)>>(Setty $a, Setty $b --> Bool)
perl6/doc/doc/Language/setbagmix.pod6:205: say (1, 2, 3).Set (<) (3, 2, 1).Set; # OUTPUT: «False␤»
perl6/doc/doc/Language/setbagmix.pod6:206: say (1, 3).Set (<) (3, 2, 1).Set; # OUTPUT: «True␤»
perl6/doc/doc/Language/setbagmix.pod6:207: say ∅ (<) (3, 2, 1).Set; # OUTPUT: «True␤»
perl6/doc/doc/Language/setbagmix.pod6:215:Equivalent to L«(<)», at codepoint U+2282 (SUBSET OF).
perl6/doc/doc/Language/setbagmix.pod6:223:Equivalent to C«!(<)», at codepoint U+2284 (NOT A SUBSET OF).
perl6/doc/doc/Language/setbagmix.pod6:225: say (1, 2, 3).Set !(<) (3, 2, 1).Set; # OUTPUT: «True␤»
perl6/doc/doc/Language/setbagmix.pod6:269:Like L«(<)» with reversed arguments. Returns C<True> if C<$a> is a
perl6/doc/doc/Language/unicode_entry.pod6:212: ⊂ U+2282 (<)
perl6/doc/doc/Language/unicode_entry.pod6:213: ⊄ U+2284 !(<)
perl6/doc/doc/Language/unicode_texas.pod6:97: ⊂ | U+2282 | (<) | v6.c |
perl6/doc/doc/Language/unicode_texas.pod6:98: ⊄ | U+2284 | !(<) | v6.c |
perl6/doc/doc/Type/Bag.pod6:82:say $a (<) $b; # OUTPUT: «True␤»
perl6/doc/doc/Type/BagHash.pod6:79:say $a (<) $b; # OUTPUT: «True␤»
perl6/doc/doc/Type/Set.pod6:68:say $a (<) $b; # OUTPUT: «False␤»
perl6/doc/doc/Type/SetHash.pod6:67:say $a (<) $b; # OUTPUT: «False␤»
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment