[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2003-11-05 (04:30) |
From: | Dustin Sallings <dustin@s...> |
Subject: | [Caml-list] cadr? |
This seems like a stupid question, but in my endless search for performance, I tried converting a hashtbl to an assoc list (since it's only got four predefined elements). I'm having trouble figuring out what to do with this thing (other than assoc): let tmp = List.map (fun x -> (x, "hi" ^ (string_of_int x))) [1; 2; 3; 4; 5];; val tmp : (int * string) list = [(1, "hi1"); (2, "hi2"); (3, "hi3"); (4, "hi4"); (5, "hi5")] I want to do something like this: List.map (function x -> print_endline(List.nth x 1)) tmp;; What am I missing? -- Dustin Sallings ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners