Github user aljoscha commented on a diff in the pull request: https://github.com/apache/flink/pull/3336#discussion_r102426884 --- Diff: docs/dev/stream/state.md --- @@ -118,6 +118,11 @@ added to the state. Contrary to `ReducingState`, the aggregate type may be diffe of elements that are added to the state. The interface is the same as for `ListState` but elements added using `add(T)` are folded into an aggregate using a specified `FoldFunction`. +* `MapState<UK, UV>`: This keeps a list of mappings. You can put key-value pairs into the state and retrieve +retrieve an `Iterable` over all currently stored mappings. Mappings are added using `put(UK, UV)` or +`putAll(map<UK, UV>)`. The value associated with a user key can be retrieved using `get(UK)`. The iterable --- End diff -- lowercase `map`
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---