Libraryless. Click here for Pure Java version (2805L/17K).
static <A, B> Set<B> mmGetAllAsSet(MultiMap<A, B> mm, A... keys) { new Set<B> l; for (A key : keys) l.addAll(mm.get(key)); ret l; } static <A, B> Set<B> mmGetAllAsSet(MultiMap<A, B> mm, Iterable<A> keys) { new Set<B> l; fOr (A key : keys) l.addAll(mm.get(key)); ret l; }
Began life as a copy of #1014562
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
Snippet ID: | #1028974 |
Snippet name: | mmGetAllAsSet |
Eternal ID of this version: | #1028974/1 |
Text MD5: | 0213e2ffeac6cf9f7d0964a9b306b68a |
Transpilation MD5: | cea4ac51f77cab650eb67833d01bb8f2 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-07-15 01:48:06 |
Source code size: | 303 bytes / 13 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 212 / 311 |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1028980 - msmGetAllAsSet |