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

8
LINES

< > BotCompany Repo | #1020056 // minXOfFirstNChildren

JavaX fragment (include)

1  
static int minXOfFirstNChildren(final Container c, final int n) {
2  
  ret swing(func -> int {
3  
    int x = c.getWidth();
4  
    for (Component child : takeFirst(n, getChildren(c)))
5  
      x = min(x, child.getX());
6  
    ret x;
7  
  });
8  
}

Author comment

Began life as a copy of #1020055

download  show line numbers  debug dex  old transpilations   

Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1020056
Snippet name: minXOfFirstNChildren
Eternal ID of this version: #1020056/3
Text MD5: 92c37f1c0f1926ef7733b1a7566abf61
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-12-05 11:34:07
Source code size: 232 bytes / 8 lines
Pitched / IR pitched: No / No
Views / Downloads: 205 / 255
Version history: 2 change(s)
Referenced in: [show references]