Lines Matching refs:is_safe

23 -export([is_bif/3, is_guard_bif/3, is_pure/3, is_safe/3]).
448 is_safe(erlang, '/=', 2) -> true; function
449 is_safe(erlang, '<', 2) -> true; function
450 is_safe(erlang, '=/=', 2) -> true; function
451 is_safe(erlang, '=:=', 2) -> true; function
452 is_safe(erlang, '=<', 2) -> true; function
453 is_safe(erlang, '==', 2) -> true; function
454 is_safe(erlang, '>', 2) -> true; function
455 is_safe(erlang, '>=', 2) -> true; function
456 is_safe(erlang, date, 0) -> true; function
457 is_safe(erlang, get, 0) -> true; function
458 is_safe(erlang, get, 1) -> true; function
459 is_safe(erlang, get_cookie, 0) -> true; function
460 is_safe(erlang, get_keys, 1) -> true; function
461 is_safe(erlang, group_leader, 0) -> true; function
462 is_safe(erlang, is_alive, 0) -> true; function
463 is_safe(erlang, is_atom, 1) -> true; function
464 is_safe(erlang, is_boolean, 1) -> true; function
465 is_safe(erlang, is_binary, 1) -> true; function
466 is_safe(erlang, is_constant, 1) -> true; function
467 is_safe(erlang, is_float, 1) -> true; function
468 is_safe(erlang, is_function, 1) -> true; function
469 is_safe(erlang, is_integer, 1) -> true; function
470 is_safe(erlang, is_list, 1) -> true; function
471 is_safe(erlang, is_number, 1) -> true; function
472 is_safe(erlang, is_pid, 1) -> true; function
473 is_safe(erlang, is_port, 1) -> true; function
474 is_safe(erlang, is_record, 3) -> true; function
475 is_safe(erlang, is_reference, 1) -> true; function
476 is_safe(erlang, is_tuple, 1) -> true; function
477 is_safe(erlang, make_ref, 0) -> true; function
478 is_safe(erlang, node, 0) -> true; function
479 is_safe(erlang, nodes, 0) -> true; function
480 is_safe(erlang, ports, 0) -> true; function
481 is_safe(erlang, pre_loaded, 0) -> true; function
482 is_safe(erlang, processes, 0) -> true; function
483 is_safe(erlang, registered, 0) -> true; function
484 is_safe(erlang, self, 0) -> true; function
485 is_safe(erlang, term_to_binary, 1) -> true; function
486 is_safe(erlang, time, 0) -> true; function
487 is_safe(_, _, _) -> false. function