|
NAMEComplete::Sah - Sah-related completion routinesVERSIONThis document describes version 0.008 of Complete::Sah (from Perl distribution Complete-Sah), released on 2021-07-29.SYNOPSISuse Complete::Sah qw(complete_from_schema); my $res = complete_from_schema(word => 'a', schema=>[str => {in=>[qw/apple apricot banana/]}]); # -> {words=>['apple', 'apricot'], static=>0} FUNCTIONScomplete_from_schemaUsage:complete_from_schema(%args) -> [$status_code, $reason, $payload, \%result_meta] Complete a value from schema. Employ some heuristics to complete a value from Sah schema. For example, if schema is "[str => in => [qw/new open resolved rejected/]]", then we can complete from the "in" clause. Or for something like "[int => between => [1, 20]]" we can complete using values from 1 to 20. This function is not exported by default, but exportable. Arguments ('*' denotes required arguments):
Returns an enveloped result (an array). First element ($status_code) is an integer containing HTTP-like status code (200 means OK, 4xx caller error, 5xx function error). Second element ($reason) is a string containing error message, or something like "OK" if status is 200. Third element ($payload) is the actual result, but usually not present when enveloped result is an error response ($status_code is not 2xx). Fourth element (%result_meta) is called result metadata and is optional, a hash that contains extra information, much like how HTTP response headers provide additional metadata. Return value: (any) HOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Complete-Sah>.SOURCESource repository is at <https://github.com/perlancar/perl-Complete-Sah>.BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Complete-Sah>When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. AUTHORperlancar <perlancar@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2021, 2020, 2019 by perlancar@cpan.org.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |