Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement the standard library in arr.ai #327

Open
marcelocantos opened this issue May 25, 2020 · 2 comments
Open

Implement the standard library in arr.ai #327

marcelocantos opened this issue May 25, 2020 · 2 comments
Assignees
Labels
enhancement P1 Medium priority issue

Comments

@marcelocantos
Copy link
Contributor

marcelocantos commented May 25, 2020

The standard library should be a regular bit of arr.ai code. This allows simpler functions that leverage other functions to be expressed directly in arr.ai while still providing access to the builtins implement in the host language. It'll also reduce the porting effort when adding a new host language.

\native native +> (
    seq: native.seq +> (
        trim_prefix: \prefix
            let has_prefix = native.seq.has_prefix(prefix);
            \subject cond [
                has_prefix(subject): subject(prefix count:),
                *: subject,
            ],
    ),
)
@marcelocantos marcelocantos added enhancement P0 High priority issue labels May 25, 2020
@marcelocantos marcelocantos added P1 Medium priority issue and removed P0 High priority issue labels Jun 1, 2020
@marcelocantos
Copy link
Contributor Author

This is a blocker for #178, which is P0, so bumping to P0 as well.

@marcelocantos marcelocantos added P0 High priority issue and removed P1 Medium priority issue labels Jun 22, 2020
@marcelocantos marcelocantos added P1 Medium priority issue and removed P0 High priority issue labels Aug 8, 2020
@marcelocantos
Copy link
Contributor Author

#485 and #602 will make the above example cleaner.

\native native +> (
    seq+>: (
        trim_prefix: \prefix
            let has_prefix = super.has_prefix(prefix);
            \subject cond [
                has_prefix(subject): subject(prefix count:),
                *: subject,
            ],
    ),
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement P1 Medium priority issue
Projects
None yet
Development

No branches or pull requests

2 participants