numbers.pm 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. # -*- buffer-read-only: t -*-
  2. #
  3. # lib/overload/numbers.pm
  4. #
  5. # Copyright (C) 2008 by Larry Wall and others
  6. #
  7. # You may distribute under the terms of either the GNU General Public
  8. # License or the Artistic License, as specified in the README file.
  9. #
  10. # !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
  11. # This file is built by regen/overload.pl.
  12. # Any changes made here will be lost!
  13. package overload::numbers;
  14. our @names = qw#
  15. ()
  16. (${}
  17. (@{}
  18. (%{}
  19. (*{}
  20. (&{}
  21. (++
  22. (--
  23. (bool
  24. (0+
  25. (""
  26. (!
  27. (=
  28. (abs
  29. (neg
  30. (<>
  31. (int
  32. (<
  33. (<=
  34. (>
  35. (>=
  36. (==
  37. (!=
  38. (lt
  39. (le
  40. (gt
  41. (ge
  42. (eq
  43. (ne
  44. (nomethod
  45. (+
  46. (+=
  47. (-
  48. (-=
  49. (*
  50. (*=
  51. (/
  52. (/=
  53. (%
  54. (%=
  55. (**
  56. (**=
  57. (<<
  58. (<<=
  59. (>>
  60. (>>=
  61. (&
  62. (&=
  63. (&.
  64. (&.=
  65. (|
  66. (|=
  67. (|.
  68. (|.=
  69. (^
  70. (^=
  71. (^.
  72. (^.=
  73. (<=>
  74. (cmp
  75. (~
  76. (~.
  77. (atan2
  78. (cos
  79. (sin
  80. (exp
  81. (log
  82. (sqrt
  83. (x
  84. (x=
  85. (.
  86. (.=
  87. (~~
  88. (-X
  89. (qr
  90. #;
  91. our @enums = qw#
  92. fallback
  93. to_sv
  94. to_av
  95. to_hv
  96. to_gv
  97. to_cv
  98. inc
  99. dec
  100. bool_
  101. numer
  102. string
  103. not
  104. copy
  105. abs
  106. neg
  107. iter
  108. int
  109. lt
  110. le
  111. gt
  112. ge
  113. eq
  114. ne
  115. slt
  116. sle
  117. sgt
  118. sge
  119. seq
  120. sne
  121. nomethod
  122. add
  123. add_ass
  124. subtr
  125. subtr_ass
  126. mult
  127. mult_ass
  128. div
  129. div_ass
  130. modulo
  131. modulo_ass
  132. pow
  133. pow_ass
  134. lshift
  135. lshift_ass
  136. rshift
  137. rshift_ass
  138. band
  139. band_ass
  140. sband
  141. sband_ass
  142. bor
  143. bor_ass
  144. sbor
  145. sbor_ass
  146. bxor
  147. bxor_ass
  148. sbxor
  149. sbxor_ass
  150. ncmp
  151. scmp
  152. compl
  153. scompl
  154. atan2
  155. cos
  156. sin
  157. exp
  158. log
  159. sqrt
  160. repeat
  161. repeat_ass
  162. concat
  163. concat_ass
  164. smart
  165. ftest
  166. regexp
  167. #;
  168. { my $i = 0; our %names = map { $_ => $i++ } @names }
  169. { my $i = 0; our %enums = map { $_ => $i++ } @enums }
  170. # ex: set ro: