Sha256: cb7330f32ac73b22dc7bf7d5bc4f0598191b4468c24e349d3358d2a9a6c533f6

Contents?: true

Size: 606 Bytes

Versions: 5

Compression:

Stored size: 606 Bytes

Contents

module Erlectricity
  module External
    module  Types
      SMALL_INT = 97
      INT = 98

      SMALL_BIGNUM = 110
      LARGE_BIGNUM = 111

      FLOAT = 99

      ATOM = 100
      REF = 101           #old style reference
      NEW_REF = 114     
      PORT = 102          #not supported accross node boundaries
      PID = 103

      SMALL_TUPLE = 104
      LARGE_TUPLE = 105

      NIL = 106
      STRING = 107
      LIST = 108
      BIN = 109
      
      FUN = 117
      NEW_FUN = 112
    end

    VERSION = 131
    
    MAX_INT = (1 << 27) -1
    MIN_INT = -(1 << 27)
    MAX_ATOM = 255
  end

end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
mojombo-erlectricity-0.2.1 lib/erlectricity/constants.rb
tmm1-erlectricity-0.2.1 lib/erlectricity/constants.rb
erlectricity-0.1.0 lib/erlectricity/constants.rb
erlectricity-0.2.0 lib/erlectricity/constants.rb
erlectricity-0.2.1 lib/erlectricity/constants.rb