=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== liblist-someutils-perl-0.58/README.md-96-Returns a true value if all items in LIST meet the criterion given through liblist-someutils-perl-0.58/README.md:97:BLOCK. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-98- ############################################## liblist-someutils-perl-0.58/README.md-115-Returns a true value if any item in LIST meets the criterion given through liblist-someutils-perl-0.58/README.md:116:BLOCK. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-117- ############################################## liblist-someutils-perl-0.58/README.md-129-Logically the negation of `any`. Returns a true value if no item in LIST meets liblist-someutils-perl-0.58/README.md:130:the criterion given through BLOCK. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-131- ############################################## liblist-someutils-perl-0.58/README.md-148-Logically the negation of `all`. Returns a true value if not all items in LIST liblist-someutils-perl-0.58/README.md:149:meet the criterion given through BLOCK. Sets `$_` for each item in LIST in liblist-someutils-perl-0.58/README.md-150-turn: ############################################## liblist-someutils-perl-0.58/README.md-163-Returns a true value if precisely one item in LIST meets the criterion liblist-someutils-perl-0.58/README.md:164:given through BLOCK. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-165- ############################################## liblist-someutils-perl-0.58/README.md-181-Makes a copy of the list and then passes each element _from the copy_ to the liblist-someutils-perl-0.58/README.md:182:BLOCK. Any changes or assignments to `$_` in the BLOCK will only affect the liblist-someutils-perl-0.58/README.md:183:elements of the new list. However, if `$_` is a reference then changes to the liblist-someutils-perl-0.58/README.md-184-referenced value will be seen in both the original and new list. ############################################## liblist-someutils-perl-0.58/README.md-200- liblist-someutils-perl-0.58/README.md:201:Note that you must alter `$_` directly inside BLOCK in order for changes to liblist-someutils-perl-0.58/README.md-202-make effect. New value returned from the BLOCK are ignored: ############################################## liblist-someutils-perl-0.58/README.md-212-Inserts VALUE after the first item in LIST for which the criterion in BLOCK is liblist-someutils-perl-0.58/README.md:213:true. Sets `$_` for each item in LIST in turn. liblist-someutils-perl-0.58/README.md-214- ############################################## liblist-someutils-perl-0.58/README.md-233-Evaluates BLOCK for each pair of elements in ARRAY1 and ARRAY2 and returns a liblist-someutils-perl-0.58/README.md:234:new list consisting of BLOCK's return values. The two elements are set to `$a` liblist-someutils-perl-0.58/README.md:235:and `$b`. Note that those two are aliases to the original value so changing liblist-someutils-perl-0.58/README.md-236-them will modify the input arrays. ############################################## liblist-someutils-perl-0.58/README.md-302-Returns a list of the values of LIST after (and not including) the point liblist-someutils-perl-0.58/README.md:303:where BLOCK returns a true value. Sets `$_` for each element in LIST in turn. liblist-someutils-perl-0.58/README.md-304- ############################################## liblist-someutils-perl-0.58/README.md-313-Returns a list of values of LIST up to (and not including) the point where BLOCK liblist-someutils-perl-0.58/README.md:314:returns a true value. Sets `$_` for each element in LIST in turn. liblist-someutils-perl-0.58/README.md-315- ############################################## liblist-someutils-perl-0.58/README.md-374-Creates an array iterator, for looping over an array in chunks of liblist-someutils-perl-0.58/README.md:375:`$n` items at a time. (n at a time, get it?). An example is liblist-someutils-perl-0.58/README.md-376-probably a better explanation than I could give in words. ############################################## liblist-someutils-perl-0.58/README.md-397-Performs a binary search on LIST which must be a sorted list of values. BLOCK liblist-someutils-perl-0.58/README.md:398:must return a negative value if the current element (stored in `$_`) is smaller, liblist-someutils-perl-0.58/README.md-399-a positive value if it is bigger and zero if it matches. ############################################## liblist-someutils-perl-0.58/README.md-408-Performs a binary search on LIST which must be a sorted list of values. BLOCK liblist-someutils-perl-0.58/README.md:409:must return a negative value if the current element (stored in `$_`) is smaller, liblist-someutils-perl-0.58/README.md-410-a positive value if it is bigger and zero if it matches. ############################################## liblist-someutils-perl-0.58/README.md-420-Returns the first element in LIST for which BLOCK evaluates to true. Each liblist-someutils-perl-0.58/README.md:421:element of LIST is set to `$_` in turn. Returns `undef` if no such element liblist-someutils-perl-0.58/README.md-422-has been found. ############################################## liblist-someutils-perl-0.58/README.md-430-Returns the only element in LIST for which BLOCK evaluates to true. Sets liblist-someutils-perl-0.58/README.md:431:`$_` for each item in LIST in turn. Returns `undef` if no such element liblist-someutils-perl-0.58/README.md-432-has been found. ############################################## liblist-someutils-perl-0.58/README.md-440-Returns the last value in LIST for which BLOCK evaluates to true. Each element liblist-someutils-perl-0.58/README.md:441:of LIST is set to `$_` in turn. Returns `undef` if no such element has been liblist-someutils-perl-0.58/README.md-442-found. ############################################## liblist-someutils-perl-0.58/README.md-450-Returns the result of BLOCK for the first element in LIST for which BLOCK liblist-someutils-perl-0.58/README.md:451:evaluates to true. Each element of LIST is set to `$_` in turn. Returns liblist-someutils-perl-0.58/README.md-452-`undef` if no such element has been found. ############################################## liblist-someutils-perl-0.58/README.md-460-Returns the result of BLOCK for the first element in LIST for which BLOCK liblist-someutils-perl-0.58/README.md:461:evaluates to true. Sets `$_` for each item in LIST in turn. Returns liblist-someutils-perl-0.58/README.md-462-`undef` if no such element has been found. ############################################## liblist-someutils-perl-0.58/README.md-470-Returns the result of BLOCK for the last element in LIST for which BLOCK liblist-someutils-perl-0.58/README.md:471:evaluates to true. Each element of LIST is set to `$_` in turn. Returns liblist-someutils-perl-0.58/README.md-472-`undef` if no such element has been found. ############################################## liblist-someutils-perl-0.58/README.md-477- liblist-someutils-perl-0.58/README.md:478:Evaluates BLOCK for each element in LIST (assigned to `$_`) and returns a list liblist-someutils-perl-0.58/README.md-479-of the indices of those elements for which BLOCK returned a true value. This is ############################################## liblist-someutils-perl-0.58/README.md-488-Returns the index of the first element in LIST for which the criterion in BLOCK liblist-someutils-perl-0.58/README.md:489:is true. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-490- ############################################## liblist-someutils-perl-0.58/README.md-504-Returns the index of the only element in LIST for which the criterion liblist-someutils-perl-0.58/README.md:505:in BLOCK is true. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-506- ############################################## liblist-someutils-perl-0.58/README.md-521-Returns the index of the last element in LIST for which the criterion in BLOCK liblist-someutils-perl-0.58/README.md:522:is true. Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-523- ############################################## liblist-someutils-perl-0.58/README.md-568-Counts the number of elements in LIST for which the criterion in BLOCK is true. liblist-someutils-perl-0.58/README.md:569:Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-570- ############################################## liblist-someutils-perl-0.58/README.md-575-Counts the number of elements in LIST for which the criterion in BLOCK is false. liblist-someutils-perl-0.58/README.md:576:Sets `$_` for each item in LIST in turn: liblist-someutils-perl-0.58/README.md-577-