Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created May 3, 2018 10:30
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/88e44d0314f73d432564dbaddbc9e253 to your computer and use it in GitHub Desktop.
Save Whateverable/88e44d0314f73d432564dbaddbc9e253 to your computer and use it in GitHub Desktop.
greppable6
\.ACCEPTS
File Code
JNTHN/Cro-HTTP
…/Router.pm6 :538:
'$han.signature.ACCEPTS($cap) || ' ~
JNTHN/Cro-HTTP
…/Router.pm6 :696:
return .(body) if .signature.ACCEPTS(\(body));
JNTHN/Cro-HTTP
…/Router.pm6 :701:
return .value()(body) if .value.signature.ACCEPTS(\(body));
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/AdaptHandler.pm6 :40:
$!real-signature.ACCEPTS(self.filter-arguments($c))
bradclawsie/Net-IP-Parse
…/Parse.pm6 :106:
my $matches = (rx|^(\d+).(\d+).(\d+).(\d+)$|).ACCEPTS: $addr;
cygx/p6-uni63
…/Uni63.pm6 :31:
.ACCEPTS($^s).made given BEGIN /
cygx/p6-uni63
…/Uni63.pm6 :40:
.ACCEPTS($^s).made given BEGIN /
drforr/perl6-Perl6-Parser
…/rosetta-a.t :48:
my @regex = @blocks.map({ my @c = .comb; rx/<@c>/ }).grep: { .ACCEPTS($word.uc) }
jnthn/grammar-debugger
…/Debugger.pm6 :149:
&& $!state{'cond-breakpoints'}{$name}.ACCEPTS($match);
jnthn/p6-file-ignore
…/Ignore.pm6 :98:
$seeking-negation = False if .pattern.ACCEPTS($path);
jnthn/p6-file-ignore
…/Ignore.pm6 :102:
$seeking-negation = True if .pattern.ACCEPTS($path);
jnthn/p6-file-ignore
…/Ignore.pm6 :113:
$seeking-negation = False if .pattern.ACCEPTS($path);
jnthn/p6-file-ignore
…/Ignore.pm6 :117:
$seeking-negation = True if .pattern.ACCEPTS($path);
perl6/doc
…/operators.pod6 :1750:
the right-hand side and calls C<.ACCEPTS($_)> on it. The semantics are left
perl6/doc
…/Any.pod6 :28:
EXPR.ACCEPTS(EXPR);
perl6/doc
…/Pair.pod6 :101:
it and checks invocant's value C<.ACCEPTS> that value:
perl6/doc
…/Pair.pod6 :106:
If C<topic> is another L<Pair>, checks the invocant's value C<.ACCEPTS> the
perl6/doc
…/Range.pod6 :92:
say $p.ACCEPTS( $r ); # OUTPUT: «False␤»
perl6/doc
…/Range.pod6 :93:
say $r.ACCEPTS( $p ); # OUTPUT: «True␤»
perl6/doc
…/Range.pod6 :94:
say $r ~~ $p; # OUTPUT: «False␤» (same as $p.ACCEPTS( $r )
perl6/doc
…/Range.pod6 :95:
say $p ~~ $r; # OUTPUT: «True␤» (same as $r.ACCEPTS( $p )
rakudo-p5/v5
…/Actions.pm :4066:
# Call $rhs.ACCEPTS( $_ ), where $_ is $lhs.
rakudo-p5/v5
…/Actions.pm :5511:
&& !QAST::Node.ACCEPTS($ast[0]) {
rakudo-p5/v5
…/Actions.pm :5517:
&& !QAST::Node.ACCEPTS($ast[0])
spitsh/spitsh
…/CHANGELOG.md :26:
- Add `JSON.merge` and `JSON.ACCEPTS`
spitsh/spitsh
…/CHANGELOG.md :310:
.ACCEPTS method which controls what ~~ returns.
spitsh/spitsh
…/merge.t :16:
is $answer<wrong> ~~ $merged, '', ‘.ACCEPTS doesn't leak to stdout’;
zoffixznet/perl6-IO-Dir
…/Dir.pm6 :66:
$test.ACCEPTS($str-elem),
zoffixznet/perl6-IRC-Client
…/Client.pm6 :339:
.signature.ACCEPTS: \($text)
zoffixznet/perl6-IRC-Client
…/Client.pm6 :340:
or .signature.ACCEPTS: \($text, :$where)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment