mauke

Results 136 comments of mauke

See #17. It's not that they're optional, it's that they consume a list and lists can be empty.

What's your use case for this?

> Any time the user has to revert to doing parameter parsing in the body that defeats the point of using parameter lists. I strongly disagree with this. I think...

How is this a dupe of #1241, which is about perlfunc anchors?

No longer reproducible with the latest version of `true`. This is most likely the same issue as https://rt.cpan.org/Ticket/Display.html?id=124745, which was [fixed in version 1.0.0](https://metacpan.org/dist/true/changes) of https://github.com/chocolateboy/true.

In addition to what @tobyink said, you can also define ad-hoc type constants: ```perl use constant { T_URI => InstanceOf['URI'], }; method foo(T_URI $uri, ArrayOf[T_URI] $uris) { ... } ```...

I have somewhat come around on this issue. In the latest commits I've added support for `//=`. I'm still on the fence about `||=`, so leaving this issue open for...

I could really use this function, too. I'd like to be able to write an alternative to `execSchedule` that doesn't just print errors to `stdout` and keep running. To do...

I'm trying to prevent the accidental use of `b` as the main/only compose config. It is purely a template file that only contains partial service fragments. It used to be...