span

Provide Haskell's span functionality

NAME

span - Provide Haskell's span functionality

SYNOPSIS

use span;

.say for span * < 10, 2, 2, 2, 5, 5, 7, 13, 9, 6, 2, 20, 4;
# (2 2 2 5 5 7)
# (13 9 6 2 20 4)

.say for span (* < 10, * < 20), 2, 2, 2, 5, 5, 7, 13, 9, 6, 2, 20, 4;
# (2 2 2 5 5 7)
# (13 9 6 2)
# (20 4)

.say for span Int, 2, 2, 2, 5, 5, "a", "b", "c";
# (2 2 2 5 5)
# (a b c)

DESCRIPTION

NOTE: this distribution has been deprecated in favour of the snip distribution.

The span distribution exports a single subroutine span that mimics the functionality provided by Haskell's span functionality.

The span subroutine takes a matcher much like grep does, which can be a Callable or any other object that can have the ACCEPTS method called on it.

AUTHOR

Elizabeth Mattijsen [email protected]

Source can be located at: https://github.com/lizmat/span . Comments and Pull Requests are welcome.

If you like this module, or what Iโ€™m doing more generally, committing to a small sponsorship would mean a great deal to me!

COPYRIGHT AND LICENSE

Copyright 2022, 2025 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

span v0.0.2

Provide Haskell's span functionality

Authors

  • Elizabeth Mattijsen

License

Artistic-2.0

Dependencies

snip:ver<0.0.2+>:auth<zef:lizmat>

Test Dependencies

Provides

  • span

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.

Built with Podlite โ€” the markup and publishing tools behind this site.