tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
10
Task/Optional-parameters/Ursala/optional-parameters-1.ursala
Normal file
10
Task/Optional-parameters/Ursala/optional-parameters-1.ursala
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#import std
|
||||
#import nat
|
||||
|
||||
ss ::
|
||||
|
||||
ordering %fZ ~ordering||lleq!
|
||||
column %n ~column||1!
|
||||
reversed %b
|
||||
|
||||
sorter = +^(~reversed?/~&x! ~&!,-<+ +^/~ordering ~~+ ~&h++ //skip+ predecessor+ ~column)
|
||||
17
Task/Optional-parameters/Ursala/optional-parameters-2.ursala
Normal file
17
Task/Optional-parameters/Ursala/optional-parameters-2.ursala
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
example_table =
|
||||
|
||||
<
|
||||
<'foo','b '>,
|
||||
<'barr','a '>,
|
||||
<'bazzz','c'>>
|
||||
|
||||
#cast %sLLL
|
||||
|
||||
examples =
|
||||
|
||||
<
|
||||
(sorter ss&) example_table, # default sorting algorithm
|
||||
(sorter ss[ordering: leql]) example_table, # sort by field lengths but otherwise default
|
||||
(sorter ss[column: 2]) example_table, # etc.
|
||||
(sorter ss[reversed: true]) example_table,
|
||||
(sorter ss[reversed: true,column: 2]) example_table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue