my $h = TwoWayHash->new(100); # 100 is the "size", ignore for now $h->insert("mam", "dad"); print $h->retrieveOneWay("L2R", "mam") # Left 2 Right # dad print $h->retrieveOneWay("R2L", "dad") # Right 2 Left # mam