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

9
LINES

< > BotCompany Repo | #1004263 // firstKey - first key of map (e.g. litorderedmap)

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

Transpiled version (2496L) is out of date.

static <A, B> A firstKey(Map<A, B> map) {
  ret first(keys(map));
}

ifclass IMultiMap
static <A, B> A firstKey(IMultiMap<A, B> map) {
  ret map == null ?: first(map.keySet());
}
endif

download  show line numbers  debug dex  old transpilations   

Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1004263
Snippet name: firstKey - first key of map (e.g. litorderedmap)
Eternal ID of this version: #1004263/6
Text MD5: 649ef0ff9d342113dbf51b9e64e5c563
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-03-11 07:06:12
Source code size: 192 bytes / 9 lines
Pitched / IR pitched: No / No
Views / Downloads: 558 / 655
Version history: 5 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1018651 - firstKeyAndValue - first key & value of map (as Pair)
#1028717 - secondKey - second key of map (e.g. litorderedmap)