We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#(listlist? obj) listlist? checks if an object is a list of lists
Example 1: Verify that an object is a list of lists and flatten it.
> (define lst (list (list 1 2 3) (list 3 4 5))) > (listlist? lst) #t > (flatten lst) (1 2 3 4 5 6)