Toby Inkster

Results 86 comments of Toby Inkster

I thought the example I provided made things clear why. ```perl use strict; use warnings; use Data::Checks; { no Data::Checks; # In this scope, strict and warnings are DISABLED! #...

@duncand, there's a good reason to consider booleans as separate from numbers and strings with regards to accepting undef. ```perl use warnings; my $thing = undef; my $text = "Hello...

For what it's worth, `Types::XSD` supports all of the above, and I definitely plan on adding some kind of methods to "export" Type::Tiny types as Data::Check checks. Somehow.

You could allow authors to define a "fallback pattern" for repos. Like mine might be `https://github.com/{repo.lc}/p5-{dist.lc}`.

Yes, I've been having issues accessing metacpan all weekend.

It's an assumption that the unparameterized type will always be the parent of a parameterized type, even though I don't think I've documented that or enforced it anywhere. In your...