# findInMap

## Arguments

| Name | Type     | Description                                      |
| ---- | -------- | ------------------------------------------------ |
| pred | Function | The pred function used for each value in the map |
| map  | Map      | The map we are to search through                 |

## Returns

| Type      | Description                                                                        |
| --------- | ---------------------------------------------------------------------------------- |
| Maybe Any | Whatever the value was that the function found, or `undefined` if nothing is found |

## Usage

```javascript
findInMap(x => x > 2, Map { 'a' => 1 'b' => 2 'c' => 3 }) // => 3

```
