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

11
LINES

< > BotCompany Repo | #1022693 // minimalNotifyingMap - only allows put()

JavaX fragment (include)

static <A, B> Map<A, B> minimalNotifyingMap(Map<A, B> map, Runnable notify) {
  ret new AbstractMap<A, B>() {
    public Set<Map.Entry<A, B>> entrySet() { throw unimplemented(); }
    
    public B put(A a, B b) {
      B result = map.put(a, b);
      pcallF(notify);
      ret result;
    }
  };
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1022693
Snippet name: minimalNotifyingMap - only allows put()
Eternal ID of this version: #1022693/4
Text MD5: b118705d35d1b850880587122314089b
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-03-31 19:45:17
Source code size: 308 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 196 / 246
Version history: 3 change(s)
Referenced in: [show references]