Slide 98
Slide 98 text
MATCHER FINGER NUMBERS TO LETTERS
MAPPING
defmodule Typehero.Matcher do
...
@finger_numbers %{
q: @left_pinkie, a: @left_pinkie, z: @left_pinkie,
w: @left_fourth, s: @left_fourth, x: @left_fourth,
e: @left_middle, d: @left_middle, c: @left_middle,
r: @left_index, f: @left_index, v: @left_index,
t: @left_index, g: @left_index, b: @left_index,
y: @right_index, h: @right_index, j: @right_index,
n: @right_index, u: @right_index, m: @right_index,
i: @right_middle, k: @right_middle,
o: @right_fourth, l: @right_fourth,
p: @right_pinkie
}
elixirconf 2016 @tetiana12345678