Suppose I have some code:
let listB = [ 1; 2; 3 ]
Using Lisp notation, how do I do a car and cadr against this list? I know cons is ::.
Or in Scheme, first and rest?
Thanks! :-)
|
|
Suppose I have some code:
Using Lisp notation, how do I do a Thanks! :-)
|
|||
|
|
|
|
List.hd: Returns the first element of a nonempty list (The head of the list). List.tl: Returns all the elements of a nonempty list except the first (The tail or rest of the list). Example (using F# Interactive Console):
|
|||
|
|
|
|
I'm going to have to agree with simonuk. Although, like CMS has mentioned, When using pattern matching you can exploit the compilers ability to catch (base) cases you may have missed (such as when the list is empty). You can definitely catch or continue to throw that exception, but you don't have to and you might introduce bugs if that expectation doesn't happen often. So getting in the habit of exploiting the pattern matching is a good programing practice. For all intents and purposes the actual function being applied when calling
As an example, instead of using exceptions/failures we might find it more satisfactory to use
Also, be wary of using |
|||
|
|
|
|
List.hd and List.tl will do what you want - but in F# you will find that lists are typically deconstructed using pattern matching. For example, in the following function x matches the head and xs matches the tail of the list passed to the function:
|
|||
|
|