1 2 3 4 5 6 7 8 9 10 11 12
--- name: "list/pluck" module: "lists" section: "Extraction" --- Extract a specific key from each map in a list. ```sema (define people (list {:name "Alice" :age 30} {:name "Bob" :age 25})) (list/pluck :name people) ; => ("Alice" "Bob") ```