I'm new to SML, and I was wondering how to get an element in a list of tuples. For example, in the list [("abc", 4), ("def", 6)], how could you extract "abc"? I've tried
x::xs => #1(x)
but I keep getting "unresolved flex record". Any suggestions?
|
I'm new to SML, and I was wondering how to get an element in a list of tuples. For example, in the list [("abc", 4), ("def", 6)], how could you extract "abc"? I've tried
but I keep getting "unresolved flex record". Any suggestions? |
|||
|
|
|
i would extract it like this:
so that you extract the tuple from the list and bind
would, given the list |
||||
|
|
|
You can just extract it using pattern matching.
Will return |
|||
|
|
|
you can have a function for getting a tuple value, like:
if you have the list:
then, you can extract the name of the first tuple (hd) by doing:
Will return |
|||
|
|
|
The error you were having is because things like So this doesn't work:
because it just knows that it's "some kind of list", and Simply adding a type guard, or some other context that allows the compiler to tell what kind of tuple it is, will work:
|
||||
|
|