Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created May 27, 2018 02:10
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/5b9f5ec5bedb2ba3995d8bb916d37981 to your computer and use it in GitHub Desktop.
Save Whateverable/5b9f5ec5bedb2ba3995d8bb916d37981 to your computer and use it in GitHub Desktop.
greppable6
File Code
JGOFF/ANTLR4-Grammar
…/Verilog2001.g4 :1254:
unary_operator : '+' | '-' | '!' | '~' | '&' | '~&' | '|' | '~|' | '^' | '~^' | '^~' ;
JGOFF/ANTLR4-Grammar
…/Verilog2001.g4 :1256:
unary_module_path_operator : '!' | '~' | '&' | '~&' | '|' | '~|' | '^' | '~^' | '^~' ;
drforr/perl6-ANTLR4
…/Verilog2001.g4 :1254:
unary_operator : '+' | '-' | '!' | '~' | '&' | '~&' | '|' | '~|' | '^' | '~^' | '^~' ;
drforr/perl6-ANTLR4
…/Verilog2001.g4 :1256:
unary_module_path_operator : '!' | '~' | '&' | '~&' | '|' | '~|' | '^' | '~^' | '^~' ;
drforr/perl6-Format-Lisp
…/Lisp.pm6 :23:
In Lisp, ~& only adds a newline if there wasn't a newline on STDOUT previously.
drforr/perl6-Format-Lisp
…/01-parse-text.t :38:
Q{X~%~&},
drforr/perl6-Format-Lisp
…/01-parse-text.t :39:
Q{X~&},
drforr/perl6-Format-Lisp
…/01-parse-text.t :43:
Q{~&},
drforr/perl6-Format-Lisp
…/02-build-tree.t :16:
is-deeply $fl._parse( Q{~&} ), [ Format::Lisp::Directive::Amp.new ];
drforr/perl6-Format-Lisp
…/02-build-tree.t :160:
is-deeply $fl._parse( Q{~A~&} ), [
drforr/perl6-Format-Lisp
…/02-build-tree.t :355:
is-deeply $fl._parse( Q{&~&&} ), [
drforr/perl6-Format-Lisp
…/09-basic.t :53:
is $fl.format( Q{~&} ), Q{}, 'ampersand';
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :20:
# "~&" nil "")
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :22:
ok def-format-test( Q{~&}, ( ), Q{} ), Q{format.&.2};
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :26:
# "X~&" nil #.(concatenate 'string "X" (string #\Newline)))
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :28:
ok def-format-test( Q{X~&}, ( ), qq{X\n} ), Q{format.&.3};
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :32:
# "X~%~&" nil #.(concatenate 'string "X" (string #\Newline)))
drforr/perl6-Format-Lisp
…/11-format-ampersand.t :34:
ok def-format-test( Q{X~%~&}, ( ), qq{X\n} ), Q{format.&.4};
perl6/doc
…/5to6-nutshell.pod6 :546:
~& ~| ~^ And Or Xor: String
perl6/doc
…/operators.pod6 :27:
L | Multiplicative | * × / ÷ % %% \+& \+< \+> ~& ~< ~> ?& div mod gcd lcm
perl6/doc
…/operators.pod6 :1078:
=head2 infix C«~&»
perl6/doc
…/rb-nutshell.pod6 :473:
~& ~| ~^ And Or Xor: String
perl6/doc
…/Code.pod6 :146:
say ~&marine; # OUTPUT: «marine␤»
rakudo-p5/v5
…/Terms.pm :340:
multi ::('infix:<P5&>')(Str \a, Str \b) is export { &prefix:<P5.>(a) ~& &prefix:<P5.>(b) }
tony-o/perl6-html-parser-xml
…/S05.html :4959:
<pre> &#60;~~&#62; # call myself recursively
tony-o/perl6-html-parser-xml
…/S05.html :5008:
<pre> / &#60;term&#62; &#60;operator&#62; &#60;~~&#62; /</pre>
tony-o/perl6-html-parser-xml
…/S05.html :5029:
<pre> &#60;!~~&#62;</pre>
tony-o/perl6-html-parser-xml
…/S05.html :7532:
<p>In addition to returning those captured <code>Match</code> objects, the <code>.chunks</code> method also returns all the interleaved &#34;noise&#3…
tony-o/perl6-html-parser-xml
…/advent.html :300:
<p>What&#8217;s a metaoperator? That&#8217;s our name for when you can extend an operator in a certain way. For example, many languages allow some ki…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment