Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reverseInner (0.22 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function applyEach(fnList,args){if(fnList){head(fnList).apply(null,args);applyEach(tail(fnList),args);}}
    function reverseList(list){function reverseInner(list,reversedAlready){if(!list){return reversedAlready;}
    return reverseInner(tail(list),cons(head(list),reversedAlready))}
    return reverseInner(list,emptyList);}
    function first(test,list){return list&&(test(head(list))?head(list):first(test,tail(list)));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top