Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created December 16, 2017 17:27
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/a57c90abe65d734027603c64fb6ad858 to your computer and use it in GitHub Desktop.
Save Whateverable/a57c90abe65d734027603c64fb6ad858 to your computer and use it in GitHub Desktop.
greppable6
sub\ postfix
File Code
JJ/p6-math-constants
…/Constants.pm6 :45:
multi sub postfix:<c> (Num $value) is export {
JJ/p6-math-constants
…/Constants.pm6 :49:
multi sub postfix:<c> (Rat $value) is export {
Tux/CSV
…/020-bugs.txt :8:
in sub postfix:<++> at src/gen/m-CORE.setting:5082
Tux/CSV
…/bugs.pl :176:
# in sub postfix:<++> at src/gen/m-CORE.setting:5082
ajs/perl6-Math-Sequences
…/support.t :7:
sub postfix:<!>($n) { [*] 1..$n }
awwaiid/p6-Inline-Ruby
…/Ruby.pm6 :12:
sub postfix:<:rb>($code) {
awwaiid/p6-Inline-Ruby
…/Ruby.pm6 :260:
sub postfix:<:rb>($code) is export {
colomon/List-Utils
…/08-combinations.t :4:
sub postfix:<!>($n) {
colomon/Math-Odd-Functions
…/02-gamma.t :7:
sub postfix:<!>($n) { [*] 1..$n }
gfldex/perl6-pod-to-bigpage
…/html.xhtml :5098:
sub postfix:&amp;lt;!&gt;(Int $x where { $x &gt;= 0 }) { [*] 1..$x };
gfldex/perl6-pod-to-bigpage
…/html.xhtml :5102:
<pre class="code">sub postfix:&amp;lt;!&gt;(Int $x where { $x &gt;= 0 }) {
gfldex/perl6-pod-to-bigpage
…/html.xhtml :7790:
<pre class="code">multi sub postfix:&amp;lt;++&gt;($x is rw) is assoc&amp;lt;none&gt;</pre>
gfldex/perl6-pod-to-bigpage
…/html.xhtml :7801:
<pre class="code">multi sub postfix:&amp;lt;--&gt;($x is rw) is assoc&amp;lt;none&gt;</pre>
grondilu/clifford
…/Clifford.pm6 :51:
sub postfix:<~>(MultiVector $A) returns MultiVector is export { $A.reversion }
grondilu/clifford
…/Clifford.pm6 :52:
sub postfix:<^>(MultiVector $A) returns MultiVector is export { $A.involution }
grondilu/libdigest-perl6
…/SHA.pm :20:
sub postfix:<mod2³²>(\x) { x % 2**32 }
grondilu/p6-modular
…/README.md :50:
sub postfix:<!>($n) { [*] 1 .. $n }
masak/007
…/custom-ops.t :340:
sub postfix:<!>(term) {
masak/007
…/custom-ops.t :356:
sub postfix:<!>(term) {
masak/007
…/custom-ops.t :360:
sub postfix:<$>(term) {
masak/007
…/custom-ops.t :381:
sub postfix:<!>(term) is looser(prefix:<¿>) {
masak/007
…/custom-ops.t :385:
sub postfix:<$>(term) {
masak/007
…/custom-ops.t :402:
sub postfix:<!>(term) {
masak/007
…/custom-ops.t :414:
sub postfix:<$>(term) is looser(prefix:<%>) {
masak/007
…/custom-ops.t :427:
sub postfix:<¡>(term) is assoc("right") {
masak/007
…/custom-ops.t :439:
sub postfix:<$>(term) is equal(prefix:<%>) {
masak/007
…/custom-ops.t :456:
sub postfix:<!>(left, right) is equal(prefix:<¿>) {
masak/007
…/custom-ops.t :467:
sub postfix:<!>(left, right) is tighter(infix:<+>) {
masak/007
…/custom-ops.t :509:
sub postfix:<‡>(x) is looser(prefix:<^>) {
masak/007
…/custom-ops.t :529:
sub postfix:<‡>(x) is looser(prefix:<&>) {
masak/007
…/custom-ops.t :547:
sub postfix:<&>(x) {
p6-css/CSS-Declarations-p6
…/Units.pm :11:
sub postfix:<pt>(Numeric $v) is rw is export(:pt) { $v but Type['pt'] };
p6-css/CSS-Declarations-p6
…/Units.pm :12:
sub postfix:<pc>(Numeric $v) is rw is export(:pc) { $v but Type['pc'] };
p6-css/CSS-Declarations-p6
…/Units.pm :13:
sub postfix:<px>(Numeric $v) is rw is export(:px) { $v but Type['px'] };
p6-css/CSS-Declarations-p6
…/Units.pm :14:
sub postfix:<mm>(Numeric $v) is rw is export(:mm) { $v but Type['mm'] };
p6-css/CSS-Declarations-p6
…/Units.pm :15:
sub postfix:<cm>(Numeric $v) is rw is export(:cm) { $v but Type['cm'] };
p6-css/CSS-Declarations-p6
…/Units.pm :16:
sub postfix:<in>(Numeric $v) is rw is export(:in) { $v but Type['in'] };
p6-css/CSS-Declarations-p6
…/Units.pm :17:
sub postfix:<em>(Numeric $v) is rw is export(:em) { $v but Type['em'] };
p6-css/CSS-Declarations-p6
…/Units.pm :18:
sub postfix:<ex>(Numeric $v) is rw is export(:ex) { $v but Type['ex'] };
p6-css/CSS-Declarations-p6
…/Units.pm :19:
sub postfix:<%>(Numeric $v) is rw is export(:percent) { $v but Type['percent'] };
perl6/doc
…/functions.pod6 :545:
sub postfix:<!>(Int $x where { $x >= 0 }) { [*] 1..$x };
perl6/doc
…/functions.pod6 :553:
sub postfix:<!>(Int $x where { $x >= 0 }) {
perl6/doc
…/operators.pod6 :757:
multi sub postfix:<++>($x is rw) is assoc<non>
perl6/doc
…/operators.pod6 :785:
multi sub postfix:<-->($x is rw) is assoc<non>
perl6/doc
…/typesystem.pod6 :649:
sub postfix:<s>(Numeric $num) { ($num) does SI-second }
perl6/doc
…/typesystem.pod6 :650:
sub postfix:<m>(Numeric $num) { ($num) does SI-metre }
perl6/doc
…/typesystem.pod6 :651:
sub postfix:<g>(Numeric $num) { ($num) does SI-kilogram }
perl6/doc
…/typesystem.pod6 :652:
sub postfix:<kg>(Numeric $num){ ($num * 1000) does SI-kilogram }
perl6/doc
…/Sub.pod6 :19:
sub postfix:<♥>($a){ say „I love $a!“ }
perl6/doc
…/atomicint.pod6 :242:
multi sub postfix:<⚛++>(atomicint $ is rw)
perl6/doc
…/atomicint.pod6 :260:
multi sub postfix:<⚛-->(atomicint $ is rw)
tony-o/perl6-html-parser-xml
…/advent.html :273:
<pre>sub postfix:&lt;!&gt;($N) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment