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

11
LINES

< > BotCompany Repo | #1002206 // assertIsIdentifier

JavaX fragment (include)

static S assertIsIdentifier(S s) {
  if (!isIdentifier(s))
    fail("Not an identifier: " + quote(s));
  ret s;
}

static S assertIsIdentifier(S msg, S s) {
  if (!isIdentifier(s))
    fail(msg + " - Not an identifier: " + quote(s));
  ret s;
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1002206
Snippet name: assertIsIdentifier
Eternal ID of this version: #1002206/2
Text MD5: e73e867175ad3eea77cd387516e5ac53
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-04-07 16:49:35
Source code size: 254 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 714 / 1136
Version history: 1 change(s)
Referenced in: #1002285 - assertIdentifier - synonym of assertIsIdentifier
#1002427 - Accellerating 629 (SPIKE)
#1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1008538 - assertInteger
#3000382 - Answer for ferdie (>> t = 1, f = 0)