Libraryless. Click here for Pure Java version (2997L/19K).
static <A> void lambdaMapLike traverseStringTrie_leavesFirst(IVF1<StringTrie<A>> visitor, StringTrie<A> trie) { if (trie == null || visitor == null) ret; for (S string, StringTrie<A> child : trie.children()) traverseStringTrie_leavesFirst(visitor, child); visitor.get(trie); }
download show line numbers debug dex old transpilations
Travelled to 4 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, vouqrxazstgt
No comments. add comment
Snippet ID: | #1030178 |
Snippet name: | traverseStringTrie_leavesFirst |
Eternal ID of this version: | #1030178/2 |
Text MD5: | 5f4959523c7ea6cd36d760a9f8620a17 |
Transpilation MD5: | b1ea95f36cd91e06ba8780d693031bf2 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-11-12 11:06:50 |
Source code size: | 291 bytes / 6 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 183 / 260 |
Version history: | 1 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1030179 - mapStringTrieValues |