Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

7
LINES

< > BotCompany Repo | #1030146 // subMapWithKeysStartingWithIC

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (2638L/17K).

static <A> Map<S, A> subMapWithKeysStartingWithIC(S prefix, Map<S, A> map) {
  if (empty(prefix) || empty(map)) ret map;
  if (map instanceof NavigableMap && isCIMap(map)) {
    ret ((NavigableMap) map).subMap(prefix, true, lexicographicallyNextString(prefix), false);
  }
  ret filterKeys(swic$(prefix), map);
}

Author comment

Began life as a copy of #1013072

download  show line numbers  debug dex  old transpilations   

Travelled to 4 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, vouqrxazstgt

No comments. add comment

Snippet ID: #1030146
Snippet name: subMapWithKeysStartingWithIC
Eternal ID of this version: #1030146/4
Text MD5: 52ae4fcc8dc9a43e2afb1414343c5d76
Transpilation MD5: 49973a9b1cb5e6cc057a5155a9783612
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-11-11 14:37:03
Source code size: 318 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 127 / 186
Version history: 3 change(s)
Referenced in: [show references]