Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.10 KB | None | 0 0
  1. $ ./miniruby -e 'use_symbol = Object.instance_methods[0].is_a?(Symbol)
  2. nummodule = nummethod = 0
  3. mods = []
  4. ObjectSpace.each_object(Module) {|m| mods << m if m.name }
  5. mods = mods.sort_by {|m| m.name }
  6. mods.each {|mod|
  7. nummodule += 1
  8. mc = mod.kind_of?(Class) ? "class" : "module"
  9. puts "#{mc} #{mod.name} #{(mod.ancestors - [mod]).inspect}"
  10. mod.singleton_methods(false).sort.each {|methname|
  11. nummethod += 1
  12. meth = mod.method(methname)
  13. line = "#{mod.name}.#{methname} #{meth.arity}"
  14. line << " not-implemented" if !mod.respond_to?(methname)
  15. puts line
  16. }
  17. ms = mod.instance_methods(false)
  18. if use_symbol
  19. ms << :initialize if mod.private_instance_methods(false).include? :initialize
  20. else
  21. ms << "initialize" if mod.private_instance_methods(false).include? "initialize"
  22. end
  23. ms.sort.each {|methname|
  24. nummethod += 1
  25. meth = mod.instance_method(methname)
  26. line = "#{mod.name}\##{methname} #{meth.arity}"
  27. line << " not-implemented" if /\(not-implemented\)/ =~ meth.inspect
  28. puts line
  29. }
  30. }
  31. puts "#{nummodule} modules, #{nummethod} methods"
  32. '
  33. class ARGF.class [Enumerable, Object, Kernel, BasicObject]
  34. ARGF.class#argv 0
  35. ARGF.class#binmode 0
  36. ARGF.class#binmode? 0
  37. ARGF.class#bytes 0
  38. ARGF.class#chars 0
  39. ARGF.class#close 0
  40. ARGF.class#closed? 0
  41. ARGF.class#codepoints 0
  42. ARGF.class#each -1
  43. ARGF.class#each_byte 0
  44. ARGF.class#each_char 0
  45. ARGF.class#each_codepoint 0
  46. ARGF.class#each_line -1
  47. ARGF.class#eof 0
  48. ARGF.class#eof? 0
  49. ARGF.class#external_encoding 0
  50. ARGF.class#file 0
  51. ARGF.class#filename 0
  52. ARGF.class#fileno 0
  53. ARGF.class#getbyte 0
  54. ARGF.class#getc 0
  55. ARGF.class#gets -1
  56. ARGF.class#initialize -1
  57. ARGF.class#inplace_mode 0
  58. ARGF.class#inplace_mode= 1
  59. ARGF.class#inspect 0
  60. ARGF.class#internal_encoding 0
  61. ARGF.class#lineno 0
  62. ARGF.class#lineno= 1
  63. ARGF.class#lines -1
  64. ARGF.class#path 0
  65. ARGF.class#pos 0
  66. ARGF.class#pos= 1
  67. ARGF.class#print -1
  68. ARGF.class#printf -1
  69. ARGF.class#putc 1
  70. ARGF.class#puts -1
  71. ARGF.class#read -1
  72. ARGF.class#read_nonblock -1
  73. ARGF.class#readbyte 0
  74. ARGF.class#readchar 0
  75. ARGF.class#readline -1
  76. ARGF.class#readlines -1
  77. ARGF.class#readpartial -1
  78. ARGF.class#rewind 0
  79. ARGF.class#seek -1
  80. ARGF.class#set_encoding -1
  81. ARGF.class#skip 0
  82. ARGF.class#tell 0
  83. ARGF.class#to_a -1
  84. ARGF.class#to_i 0
  85. ARGF.class#to_io 0
  86. ARGF.class#to_s 0
  87. ARGF.class#to_write_io 0
  88. ARGF.class#write 1
  89. class ArgumentError [StandardError, Exception, Object, Kernel, BasicObject]
  90. class Array [Enumerable, Object, Kernel, BasicObject]
  91. Array.[] -1
  92. Array.try_convert 1
  93. Array#& 1
  94. Array#* 1
  95. Array#+ 1
  96. Array#- 1
  97. Array#<< 1
  98. Array#<=> 1
  99. Array#== 1
  100. Array#[] -1
  101. Array#[]= -1
  102. Array#all? -1
  103. Array#any? -1
  104. Array#append -1
  105. Array#assoc 1
  106. Array#at 1
  107. Array#bsearch 0
  108. Array#bsearch_index 0
  109. Array#clear 0
  110. Array#collect 0
  111. Array#collect! 0
  112. Array#combination 1
  113. Array#compact 0
  114. Array#compact! 0
  115. Array#concat -1
  116. Array#count -1
  117. Array#cycle -1
  118. Array#deconstruct 0
  119. Array#delete 1
  120. Array#delete_at 1
  121. Array#delete_if 0
  122. Array#difference -1
  123. Array#dig -1
  124. Array#drop 1
  125. Array#drop_while 0
  126. Array#each 0
  127. Array#each_index 0
  128. Array#empty? 0
  129. Array#eql? 1
  130. Array#fetch -1
  131. Array#fill -1
  132. Array#filter 0
  133. Array#filter! 0
  134. Array#find_index -1
  135. Array#first -1
  136. Array#flatten -1
  137. Array#flatten! -1
  138. Array#hash 0
  139. Array#include? 1
  140. Array#index -1
  141. Array#initialize -1
  142. Array#insert -1
  143. Array#inspect 0
  144. Array#join -1
  145. Array#keep_if 0
  146. Array#last -1
  147. Array#length 0
  148. Array#map 0
  149. Array#map! 0
  150. Array#max -1
  151. Array#min -1
  152. Array#minmax 0
  153. Array#none? -1
  154. Array#one? -1
  155. Array#pack -1
  156. Array#permutation -1
  157. Array#pop -1
  158. Array#prepend -1
  159. Array#product -1
  160. Array#push -1
  161. Array#rassoc 1
  162. Array#reject 0
  163. Array#reject! 0
  164. Array#repeated_combination 1
  165. Array#repeated_permutation 1
  166. Array#replace 1
  167. Array#reverse 0
  168. Array#reverse! 0
  169. Array#reverse_each 0
  170. Array#rindex -1
  171. Array#rotate -1
  172. Array#rotate! -1
  173. Array#sample -1
  174. Array#select 0
  175. Array#select! 0
  176. Array#shift -1
  177. Array#shuffle -1
  178. Array#shuffle! -1
  179. Array#size 0
  180. Array#slice -1
  181. Array#slice! -1
  182. Array#sort 0
  183. Array#sort! 0
  184. Array#sort_by! 0
  185. Array#sum -1
  186. Array#take 1
  187. Array#take_while 0
  188. Array#to_a 0
  189. Array#to_ary 0
  190. Array#to_h 0
  191. Array#to_s 0
  192. Array#transpose 0
  193. Array#union -1
  194. Array#uniq 0
  195. Array#uniq! 0
  196. Array#unshift -1
  197. Array#values_at -1
  198. Array#zip -1
  199. Array#| 1
  200. class BasicObject []
  201. BasicObject#! 0
  202. BasicObject#!= 1
  203. BasicObject#== 1
  204. BasicObject#__id__ 0
  205. BasicObject#__send__ -1
  206. BasicObject#equal? 1
  207. BasicObject#initialize 0
  208. BasicObject#instance_eval -1
  209. BasicObject#instance_exec -1
  210. class Binding [Object, Kernel, BasicObject]
  211. Binding#clone 0
  212. Binding#dup 0
  213. Binding#eval -1
  214. Binding#local_variable_defined? 1
  215. Binding#local_variable_get 1
  216. Binding#local_variable_set 2
  217. Binding#local_variables 0
  218. Binding#receiver 0
  219. Binding#source_location 0
  220. class Class [Module, Object, Kernel, BasicObject]
  221. Class#allocate 0
  222. Class#initialize -1
  223. Class#new -1
  224. Class#superclass 0
  225. class ClosedQueueError [StopIteration, IndexError, StandardError, Exception, Object, Kernel, BasicObject]
  226. module Comparable []
  227. Comparable#< 1
  228. Comparable#<= 1
  229. Comparable#== 1
  230. Comparable#> 1
  231. Comparable#>= 1
  232. Comparable#between? 2
  233. Comparable#clamp 2
  234. class Complex [Numeric, Comparable, Object, Kernel, BasicObject]
  235. Complex.polar -1
  236. Complex.rect -1
  237. Complex.rectangular -1
  238. Complex#* 1
  239. Complex#** 1
  240. Complex#+ 1
  241. Complex#- 1
  242. Complex#-@ 0
  243. Complex#/ 1
  244. Complex#<=> 1
  245. Complex#== 1
  246. Complex#abs 0
  247. Complex#abs2 0
  248. Complex#angle 0
  249. Complex#arg 0
  250. Complex#coerce 1
  251. Complex#conj 0
  252. Complex#conjugate 0
  253. Complex#denominator 0
  254. Complex#eql? 1
  255. Complex#fdiv 1
  256. Complex#finite? 0
  257. Complex#hash 0
  258. Complex#imag 0
  259. Complex#imaginary 0
  260. Complex#infinite? 0
  261. Complex#inspect 0
  262. Complex#magnitude 0
  263. Complex#numerator 0
  264. Complex#phase 0
  265. Complex#polar 0
  266. Complex#quo 1
  267. Complex#rationalize -1
  268. Complex#real 0
  269. Complex#real? 0
  270. Complex#rect 0
  271. Complex#rectangular 0
  272. Complex#to_c 0
  273. Complex#to_f 0
  274. Complex#to_i 0
  275. Complex#to_r 0
  276. Complex#to_s 0
  277. class Complex::compatible [Object, Kernel, BasicObject]
  278. class Data [Object, Kernel, BasicObject]
  279. module DidYouMean []
  280. class Dir [Enumerable, Object, Kernel, BasicObject]
  281. Dir.[] -1
  282. Dir.chdir -1
  283. Dir.children -1
  284. Dir.chroot 1
  285. Dir.delete 1
  286. Dir.each_child -1
  287. Dir.empty? 1
  288. Dir.entries -1
  289. Dir.exist? 1
  290. Dir.exists? 1
  291. Dir.foreach -1
  292. Dir.getwd 0
  293. Dir.glob -1
  294. Dir.home -1
  295. Dir.mkdir -1
  296. Dir.open -1
  297. Dir.pwd 0
  298. Dir.rmdir 1
  299. Dir.unlink 1
  300. Dir#children 0
  301. Dir#close 0
  302. Dir#each 0
  303. Dir#each_child 0
  304. Dir#fileno 0
  305. Dir#initialize -1
  306. Dir#inspect 0
  307. Dir#path 0
  308. Dir#pos 0
  309. Dir#pos= 1
  310. Dir#read 0
  311. Dir#rewind 0
  312. Dir#seek 1
  313. Dir#tell 0
  314. Dir#to_path 0
  315. class EOFError [IOError, StandardError, Exception, Object, Kernel, BasicObject]
  316. class Encoding [Object, Kernel, BasicObject]
  317. Encoding._load 1
  318. Encoding.aliases 0
  319. Encoding.compatible? 2
  320. Encoding.default_external 0
  321. Encoding.default_external= 1
  322. Encoding.default_internal 0
  323. Encoding.default_internal= 1
  324. Encoding.find 1
  325. Encoding.list 0
  326. Encoding.locale_charmap 0
  327. Encoding.name_list 0
  328. Encoding#_dump -1
  329. Encoding#ascii_compatible? 0
  330. Encoding#dummy? 0
  331. Encoding#inspect 0
  332. Encoding#name 0
  333. Encoding#names 0
  334. Encoding#replicate 1
  335. Encoding#to_s 0
  336. class Encoding::CompatibilityError [EncodingError, StandardError, Exception, Object, Kernel, BasicObject]
  337. class Encoding::Converter [Data, Object, Kernel, BasicObject]
  338. Encoding::Converter.asciicompat_encoding 1
  339. Encoding::Converter.search_convpath -1
  340. Encoding::Converter#== 1
  341. Encoding::Converter#convert 1
  342. Encoding::Converter#convpath 0
  343. Encoding::Converter#destination_encoding 0
  344. Encoding::Converter#finish 0
  345. Encoding::Converter#initialize -1
  346. Encoding::Converter#insert_output 1
  347. Encoding::Converter#inspect 0
  348. Encoding::Converter#last_error 0
  349. Encoding::Converter#primitive_convert -1
  350. Encoding::Converter#primitive_errinfo 0
  351. Encoding::Converter#putback -1
  352. Encoding::Converter#replacement 0
  353. Encoding::Converter#replacement= 1
  354. Encoding::Converter#source_encoding 0
  355. class Encoding::ConverterNotFoundError [EncodingError, StandardError, Exception, Object, Kernel, BasicObject]
  356. class Encoding::InvalidByteSequenceError [EncodingError, StandardError, Exception, Object, Kernel, BasicObject]
  357. Encoding::InvalidByteSequenceError#destination_encoding 0
  358. Encoding::InvalidByteSequenceError#destination_encoding_name 0
  359. Encoding::InvalidByteSequenceError#error_bytes 0
  360. Encoding::InvalidByteSequenceError#incomplete_input? 0
  361. Encoding::InvalidByteSequenceError#readagain_bytes 0
  362. Encoding::InvalidByteSequenceError#source_encoding 0
  363. Encoding::InvalidByteSequenceError#source_encoding_name 0
  364. class Encoding::UndefinedConversionError [EncodingError, StandardError, Exception, Object, Kernel, BasicObject]
  365. Encoding::UndefinedConversionError#destination_encoding 0
  366. Encoding::UndefinedConversionError#destination_encoding_name 0
  367. Encoding::UndefinedConversionError#error_char 0
  368. Encoding::UndefinedConversionError#source_encoding 0
  369. Encoding::UndefinedConversionError#source_encoding_name 0
  370. class EncodingError [StandardError, Exception, Object, Kernel, BasicObject]
  371. module Enumerable []
  372. Enumerable#all? -1
  373. Enumerable#any? -1
  374. Enumerable#chain -1
  375. Enumerable#chunk 0
  376. Enumerable#chunk_while 0
  377. Enumerable#collect 0
  378. Enumerable#collect_concat 0
  379. Enumerable#count -1
  380. Enumerable#cycle -1
  381. Enumerable#detect -1
  382. Enumerable#drop 1
  383. Enumerable#drop_while 0
  384. Enumerable#each_cons 1
  385. Enumerable#each_entry -1
  386. Enumerable#each_slice 1
  387. Enumerable#each_with_index -1
  388. Enumerable#each_with_object 1
  389. Enumerable#entries -1
  390. Enumerable#filter 0
  391. Enumerable#filter_map 0
  392. Enumerable#find -1
  393. Enumerable#find_all 0
  394. Enumerable#find_index -1
  395. Enumerable#first -1
  396. Enumerable#flat_map 0
  397. Enumerable#grep 1
  398. Enumerable#grep_v 1
  399. Enumerable#group_by 0
  400. Enumerable#include? 1
  401. Enumerable#inject -1
  402. Enumerable#lazy 0
  403. Enumerable#map 0
  404. Enumerable#max -1
  405. Enumerable#max_by -1
  406. Enumerable#member? 1
  407. Enumerable#min -1
  408. Enumerable#min_by -1
  409. Enumerable#minmax 0
  410. Enumerable#minmax_by 0
  411. Enumerable#none? -1
  412. Enumerable#one? -1
  413. Enumerable#partition 0
  414. Enumerable#reduce -1
  415. Enumerable#reject 0
  416. Enumerable#reverse_each -1
  417. Enumerable#select 0
  418. Enumerable#slice_after -1
  419. Enumerable#slice_before -1
  420. Enumerable#slice_when 0
  421. Enumerable#sort 0
  422. Enumerable#sort_by 0
  423. Enumerable#sum -1
  424. Enumerable#take 1
  425. Enumerable#take_while 0
  426. Enumerable#tally 0
  427. Enumerable#to_a -1
  428. Enumerable#to_h -1
  429. Enumerable#uniq 0
  430. Enumerable#zip -1
  431. class Enumerator [Enumerable, Object, Kernel, BasicObject]
  432. Enumerator.produce -1
  433. Enumerator#+ 1
  434. Enumerator#each -1
  435. Enumerator#each_with_index 0
  436. Enumerator#each_with_object 1
  437. Enumerator#feed 1
  438. Enumerator#initialize -1
  439. Enumerator#inspect 0
  440. Enumerator#next 0
  441. Enumerator#next_values 0
  442. Enumerator#peek 0
  443. Enumerator#peek_values 0
  444. Enumerator#rewind 0
  445. Enumerator#size 0
  446. Enumerator#with_index -1
  447. Enumerator#with_object 1
  448. class Enumerator::ArithmeticSequence [Enumerator, Enumerable, Object, Kernel, BasicObject]
  449. Enumerator::ArithmeticSequence#== 1
  450. Enumerator::ArithmeticSequence#=== 1
  451. Enumerator::ArithmeticSequence#begin 0
  452. Enumerator::ArithmeticSequence#each 0
  453. Enumerator::ArithmeticSequence#end 0
  454. Enumerator::ArithmeticSequence#eql? 1
  455. Enumerator::ArithmeticSequence#exclude_end? 0
  456. Enumerator::ArithmeticSequence#first -1
  457. Enumerator::ArithmeticSequence#hash 0
  458. Enumerator::ArithmeticSequence#inspect 0
  459. Enumerator::ArithmeticSequence#last -1
  460. Enumerator::ArithmeticSequence#size 0
  461. Enumerator::ArithmeticSequence#step 0
  462. class Enumerator::Chain [Enumerator, Enumerable, Object, Kernel, BasicObject]
  463. Enumerator::Chain#each -1
  464. Enumerator::Chain#initialize -1
  465. Enumerator::Chain#inspect 0
  466. Enumerator::Chain#rewind 0
  467. Enumerator::Chain#size 0
  468. class Enumerator::Generator [Enumerable, Object, Kernel, BasicObject]
  469. Enumerator::Generator#each -1
  470. Enumerator::Generator#initialize -1
  471. class Enumerator::Lazy [Enumerator, Enumerable, Object, Kernel, BasicObject]
  472. Enumerator::Lazy#chunk -1
  473. Enumerator::Lazy#chunk_while -1
  474. Enumerator::Lazy#collect 0
  475. Enumerator::Lazy#collect_concat 0
  476. Enumerator::Lazy#drop 1
  477. Enumerator::Lazy#drop_while 0
  478. Enumerator::Lazy#eager 0
  479. Enumerator::Lazy#enum_for -1
  480. Enumerator::Lazy#filter 0
  481. Enumerator::Lazy#filter_map 0
  482. Enumerator::Lazy#find_all 0
  483. Enumerator::Lazy#flat_map 0
  484. Enumerator::Lazy#force -1
  485. Enumerator::Lazy#grep 1
  486. Enumerator::Lazy#grep_v 1
  487. Enumerator::Lazy#initialize -1
  488. Enumerator::Lazy#lazy 0
  489. Enumerator::Lazy#map 0
  490. Enumerator::Lazy#reject 0
  491. Enumerator::Lazy#select 0
  492. Enumerator::Lazy#slice_after -1
  493. Enumerator::Lazy#slice_before -1
  494. Enumerator::Lazy#slice_when -1
  495. Enumerator::Lazy#take 1
  496. Enumerator::Lazy#take_while 0
  497. Enumerator::Lazy#to_enum -1
  498. Enumerator::Lazy#uniq 0
  499. Enumerator::Lazy#with_index -1
  500. Enumerator::Lazy#zip -1
  501. class Enumerator::Producer [Object, Kernel, BasicObject]
  502. Enumerator::Producer#each 0
  503. class Enumerator::Yielder [Object, Kernel, BasicObject]
  504. Enumerator::Yielder#<< 1
  505. Enumerator::Yielder#initialize 0
  506. Enumerator::Yielder#to_proc 0
  507. Enumerator::Yielder#yield -1
  508. module Errno []
  509. class Errno::E2BIG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  510. class Errno::EACCES [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  511. class Errno::EADDRINUSE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  512. class Errno::EADDRNOTAVAIL [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  513. class Errno::EADV [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  514. class Errno::EAFNOSUPPORT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  515. class Errno::EAGAIN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  516. class Errno::EALREADY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  517. class Errno::EBADE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  518. class Errno::EBADF [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  519. class Errno::EBADFD [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  520. class Errno::EBADMSG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  521. class Errno::EBADR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  522. class Errno::EBADRQC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  523. class Errno::EBADSLT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  524. class Errno::EBFONT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  525. class Errno::EBUSY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  526. class Errno::ECANCELED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  527. class Errno::ECHILD [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  528. class Errno::ECHRNG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  529. class Errno::ECOMM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  530. class Errno::ECONNABORTED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  531. class Errno::ECONNREFUSED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  532. class Errno::ECONNRESET [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  533. class Errno::EDEADLK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  534. class Errno::EDESTADDRREQ [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  535. class Errno::EDOM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  536. class Errno::EDOTDOT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  537. class Errno::EDQUOT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  538. class Errno::EEXIST [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  539. class Errno::EFAULT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  540. class Errno::EFBIG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  541. class Errno::EHOSTDOWN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  542. class Errno::EHOSTUNREACH [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  543. class Errno::EHWPOISON [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  544. class Errno::EIDRM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  545. class Errno::EILSEQ [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  546. class Errno::EINPROGRESS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  547. class Errno::EINTR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  548. class Errno::EINVAL [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  549. class Errno::EIO [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  550. class Errno::EISCONN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  551. class Errno::EISDIR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  552. class Errno::EISNAM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  553. class Errno::EKEYEXPIRED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  554. class Errno::EKEYREJECTED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  555. class Errno::EKEYREVOKED [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  556. class Errno::EL2HLT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  557. class Errno::EL2NSYNC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  558. class Errno::EL3HLT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  559. class Errno::EL3RST [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  560. class Errno::ELIBACC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  561. class Errno::ELIBBAD [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  562. class Errno::ELIBEXEC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  563. class Errno::ELIBMAX [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  564. class Errno::ELIBSCN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  565. class Errno::ELNRNG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  566. class Errno::ELOOP [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  567. class Errno::EMEDIUMTYPE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  568. class Errno::EMFILE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  569. class Errno::EMLINK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  570. class Errno::EMSGSIZE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  571. class Errno::EMULTIHOP [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  572. class Errno::ENAMETOOLONG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  573. class Errno::ENAVAIL [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  574. class Errno::ENETDOWN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  575. class Errno::ENETRESET [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  576. class Errno::ENETUNREACH [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  577. class Errno::ENFILE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  578. class Errno::ENOANO [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  579. class Errno::ENOBUFS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  580. class Errno::ENOCSI [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  581. class Errno::ENODATA [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  582. class Errno::ENODEV [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  583. class Errno::ENOENT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  584. class Errno::ENOEXEC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  585. class Errno::ENOKEY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  586. class Errno::ENOLCK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  587. class Errno::ENOLINK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  588. class Errno::ENOMEDIUM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  589. class Errno::ENOMEM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  590. class Errno::ENOMSG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  591. class Errno::ENONET [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  592. class Errno::ENOPKG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  593. class Errno::ENOPROTOOPT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  594. class Errno::ENOSPC [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  595. class Errno::ENOSR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  596. class Errno::ENOSTR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  597. class Errno::ENOSYS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  598. class Errno::ENOTBLK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  599. class Errno::ENOTCONN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  600. class Errno::ENOTDIR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  601. class Errno::ENOTEMPTY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  602. class Errno::ENOTNAM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  603. class Errno::ENOTRECOVERABLE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  604. class Errno::ENOTSOCK [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  605. class Errno::ENOTSUP [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  606. class Errno::ENOTTY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  607. class Errno::ENOTUNIQ [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  608. class Errno::ENXIO [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  609. class Errno::EOVERFLOW [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  610. class Errno::EOWNERDEAD [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  611. class Errno::EPERM [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  612. class Errno::EPFNOSUPPORT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  613. class Errno::EPIPE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  614. class Errno::EPROTO [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  615. class Errno::EPROTONOSUPPORT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  616. class Errno::EPROTOTYPE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  617. class Errno::ERANGE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  618. class Errno::EREMCHG [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  619. class Errno::EREMOTE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  620. class Errno::EREMOTEIO [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  621. class Errno::ERESTART [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  622. class Errno::ERFKILL [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  623. class Errno::EROFS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  624. class Errno::ESHUTDOWN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  625. class Errno::ESOCKTNOSUPPORT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  626. class Errno::ESPIPE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  627. class Errno::ESRCH [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  628. class Errno::ESRMNT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  629. class Errno::ESTALE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  630. class Errno::ESTRPIPE [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  631. class Errno::ETIME [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  632. class Errno::ETIMEDOUT [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  633. class Errno::ETOOMANYREFS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  634. class Errno::ETXTBSY [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  635. class Errno::EUCLEAN [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  636. class Errno::EUNATCH [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  637. class Errno::EUSERS [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  638. class Errno::EXDEV [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  639. class Errno::EXFULL [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  640. class Errno::NOERROR [SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  641. class Exception [Object, Kernel, BasicObject]
  642. Exception.exception -1
  643. Exception.to_tty? 0
  644. Exception#== 1
  645. Exception#backtrace 0
  646. Exception#backtrace_locations 0
  647. Exception#cause 0
  648. Exception#exception -1
  649. Exception#full_message -1
  650. Exception#initialize -1
  651. Exception#inspect 0
  652. Exception#message 0
  653. Exception#respond_to? -1
  654. Exception#set_backtrace 1
  655. Exception#to_s 0
  656. class FalseClass [Object, Kernel, BasicObject]
  657. FalseClass#& 1
  658. FalseClass#=== 1
  659. FalseClass#^ 1
  660. FalseClass#inspect 0
  661. FalseClass#to_s 0
  662. FalseClass#| 1
  663. class Fiber [Object, Kernel, BasicObject]
  664. Fiber.yield -1
  665. Fiber#initialize -1
  666. Fiber#inspect 0
  667. Fiber#raise -1
  668. Fiber#resume -1
  669. Fiber#to_s 0
  670. class FiberError [StandardError, Exception, Object, Kernel, BasicObject]
  671. class File [IO, File::Constants, Enumerable, Object, Kernel, BasicObject]
  672. File.absolute_path -1
  673. File.absolute_path? 1
  674. File.atime 1
  675. File.basename -1
  676. File.birthtime 1
  677. File.blockdev? 1
  678. File.chardev? 1
  679. File.chmod -1
  680. File.chown -1
  681. File.ctime 1
  682. File.delete -1
  683. File.directory? 1
  684. File.dirname 1
  685. File.empty? 1
  686. File.executable? 1
  687. File.executable_real? 1
  688. File.exist? 1
  689. File.exists? 1
  690. File.expand_path -1
  691. File.extname 1
  692. File.file? 1
  693. File.fnmatch -1
  694. File.fnmatch? -1
  695. File.ftype 1
  696. File.grpowned? 1
  697. File.identical? 2
  698. File.join -1
  699. File.lchmod 0 not-implemented
  700. File.lchown -1
  701. File.link 2
  702. File.lstat 1
  703. File.lutime -1
  704. File.mkfifo -1
  705. File.mtime 1
  706. File.owned? 1
  707. File.path 1
  708. File.pipe? 1
  709. File.readable? 1
  710. File.readable_real? 1
  711. File.readlink 1
  712. File.realdirpath -1
  713. File.realpath -1
  714. File.rename 2
  715. File.setgid? 1
  716. File.setuid? 1
  717. File.size 1
  718. File.size? 1
  719. File.socket? 1
  720. File.split 1
  721. File.stat 1
  722. File.sticky? 1
  723. File.symlink 2
  724. File.symlink? 1
  725. File.truncate 2
  726. File.umask -1
  727. File.unlink -1
  728. File.utime -1
  729. File.world_readable? 1
  730. File.world_writable? 1
  731. File.writable? 1
  732. File.writable_real? 1
  733. File.zero? 1
  734. File#atime 0
  735. File#birthtime 0
  736. File#chmod 1
  737. File#chown 2
  738. File#ctime 0
  739. File#flock 1
  740. File#initialize -1
  741. File#lstat 0
  742. File#mtime 0
  743. File#path 0
  744. File#size 0
  745. File#to_path 0
  746. File#truncate 1
  747. module File::Constants []
  748. class File::Stat [Comparable, Object, Kernel, BasicObject]
  749. File::Stat#<=> 1
  750. File::Stat#atime 0
  751. File::Stat#birthtime 0 not-implemented
  752. File::Stat#blksize 0
  753. File::Stat#blockdev? 0
  754. File::Stat#blocks 0
  755. File::Stat#chardev? 0
  756. File::Stat#ctime 0
  757. File::Stat#dev 0
  758. File::Stat#dev_major 0
  759. File::Stat#dev_minor 0
  760. File::Stat#directory? 0
  761. File::Stat#executable? 0
  762. File::Stat#executable_real? 0
  763. File::Stat#file? 0
  764. File::Stat#ftype 0
  765. File::Stat#gid 0
  766. File::Stat#grpowned? 0
  767. File::Stat#initialize 1
  768. File::Stat#ino 0
  769. File::Stat#inspect 0
  770. File::Stat#mode 0
  771. File::Stat#mtime 0
  772. File::Stat#nlink 0
  773. File::Stat#owned? 0
  774. File::Stat#pipe? 0
  775. File::Stat#rdev 0
  776. File::Stat#rdev_major 0
  777. File::Stat#rdev_minor 0
  778. File::Stat#readable? 0
  779. File::Stat#readable_real? 0
  780. File::Stat#setgid? 0
  781. File::Stat#setuid? 0
  782. File::Stat#size 0
  783. File::Stat#size? 0
  784. File::Stat#socket? 0
  785. File::Stat#sticky? 0
  786. File::Stat#symlink? 0
  787. File::Stat#uid 0
  788. File::Stat#world_readable? 0
  789. File::Stat#world_writable? 0
  790. File::Stat#writable? 0
  791. File::Stat#writable_real? 0
  792. File::Stat#zero? 0
  793. module FileTest []
  794. FileTest.blockdev? 1
  795. FileTest.chardev? 1
  796. FileTest.directory? 1
  797. FileTest.empty? 1
  798. FileTest.executable? 1
  799. FileTest.executable_real? 1
  800. FileTest.exist? 1
  801. FileTest.exists? 1
  802. FileTest.file? 1
  803. FileTest.grpowned? 1
  804. FileTest.identical? 2
  805. FileTest.owned? 1
  806. FileTest.pipe? 1
  807. FileTest.readable? 1
  808. FileTest.readable_real? 1
  809. FileTest.setgid? 1
  810. FileTest.setuid? 1
  811. FileTest.size 1
  812. FileTest.size? 1
  813. FileTest.socket? 1
  814. FileTest.sticky? 1
  815. FileTest.symlink? 1
  816. FileTest.world_readable? 1
  817. FileTest.world_writable? 1
  818. FileTest.writable? 1
  819. FileTest.writable_real? 1
  820. FileTest.zero? 1
  821. class Float [Numeric, Comparable, Object, Kernel, BasicObject]
  822. Float#% 1
  823. Float#* 1
  824. Float#** 1
  825. Float#+ 1
  826. Float#- 1
  827. Float#-@ 0
  828. Float#/ 1
  829. Float#< 1
  830. Float#<= 1
  831. Float#<=> 1
  832. Float#== 1
  833. Float#=== 1
  834. Float#> 1
  835. Float#>= 1
  836. Float#abs 0
  837. Float#angle 0
  838. Float#arg 0
  839. Float#ceil -1
  840. Float#coerce 1
  841. Float#denominator 0
  842. Float#divmod 1
  843. Float#eql? 1
  844. Float#fdiv 1
  845. Float#finite? 0
  846. Float#floor -1
  847. Float#hash 0
  848. Float#infinite? 0
  849. Float#inspect 0
  850. Float#magnitude 0
  851. Float#modulo 1
  852. Float#nan? 0
  853. Float#negative? 0
  854. Float#next_float 0
  855. Float#numerator 0
  856. Float#phase 0
  857. Float#positive? 0
  858. Float#prev_float 0
  859. Float#quo 1
  860. Float#rationalize -1
  861. Float#round -1
  862. Float#to_f 0
  863. Float#to_i 0
  864. Float#to_int 0
  865. Float#to_r 0
  866. Float#to_s 0
  867. Float#truncate -1
  868. Float#zero? 0
  869. class FloatDomainError [RangeError, StandardError, Exception, Object, Kernel, BasicObject]
  870. class FrozenError [RuntimeError, StandardError, Exception, Object, Kernel, BasicObject]
  871. FrozenError#initialize -1
  872. FrozenError#receiver 0
  873. module GC []
  874. GC.compact 0
  875. GC.count 0
  876. GC.disable 0
  877. GC.enable 0
  878. GC.latest_gc_info -1
  879. GC.start -1
  880. GC.stat -1
  881. GC.stress 0
  882. GC.stress= 1
  883. GC.verify_compaction_references -1
  884. GC.verify_internal_consistency 0
  885. GC.verify_transient_heap_internal_consistency 0
  886. GC#garbage_collect -1
  887. module GC::Profiler []
  888. GC::Profiler.clear 0
  889. GC::Profiler.disable 0
  890. GC::Profiler.enable 0
  891. GC::Profiler.enabled? 0
  892. GC::Profiler.raw_data 0
  893. GC::Profiler.report -1
  894. GC::Profiler.result 0
  895. GC::Profiler.total_time 0
  896. module Gem []
  897. class Hash [Enumerable, Object, Kernel, BasicObject]
  898. Hash.[] -1
  899. Hash.try_convert 1
  900. Hash#< 1
  901. Hash#<= 1
  902. Hash#== 1
  903. Hash#> 1
  904. Hash#>= 1
  905. Hash#[] 1
  906. Hash#[]= 2
  907. Hash#any? -1
  908. Hash#assoc 1
  909. Hash#clear 0
  910. Hash#compact 0
  911. Hash#compact! 0
  912. Hash#compare_by_identity 0
  913. Hash#compare_by_identity? 0
  914. Hash#deconstruct_keys 1
  915. Hash#default -1
  916. Hash#default= 1
  917. Hash#default_proc 0
  918. Hash#default_proc= 1
  919. Hash#delete 1
  920. Hash#delete_if 0
  921. Hash#dig -1
  922. Hash#each 0
  923. Hash#each_key 0
  924. Hash#each_pair 0
  925. Hash#each_value 0
  926. Hash#empty? 0
  927. Hash#eql? 1
  928. Hash#fetch -1
  929. Hash#fetch_values -1
  930. Hash#filter 0
  931. Hash#filter! 0
  932. Hash#flatten -1
  933. Hash#has_key? 1
  934. Hash#has_value? 1
  935. Hash#hash 0
  936. Hash#include? 1
  937. Hash#index 1
  938. Hash#initialize -1
  939. Hash#inspect 0
  940. Hash#invert 0
  941. Hash#keep_if 0
  942. Hash#key 1
  943. Hash#key? 1
  944. Hash#keys 0
  945. Hash#length 0
  946. Hash#member? 1
  947. Hash#merge -1
  948. Hash#merge! -1
  949. Hash#rassoc 1
  950. Hash#rehash 0
  951. Hash#reject 0
  952. Hash#reject! 0
  953. Hash#replace 1
  954. Hash#select 0
  955. Hash#select! 0
  956. Hash#shift 0
  957. Hash#size 0
  958. Hash#slice -1
  959. Hash#store 2
  960. Hash#to_a 0
  961. Hash#to_h 0
  962. Hash#to_hash 0
  963. Hash#to_proc 0
  964. Hash#to_s 0
  965. Hash#transform_keys 0
  966. Hash#transform_keys! 0
  967. Hash#transform_values 0
  968. Hash#transform_values! 0
  969. Hash#update -1
  970. Hash#value? 1
  971. Hash#values 0
  972. Hash#values_at -1
  973. class IO [File::Constants, Enumerable, Object, Kernel, BasicObject]
  974. IO.binread -1
  975. IO.binwrite -1
  976. IO.copy_stream -1
  977. IO.for_fd -1
  978. IO.foreach -1
  979. IO.new -1
  980. IO.open -1
  981. IO.pipe -1
  982. IO.popen -1
  983. IO.read -1
  984. IO.readlines -1
  985. IO.select -1
  986. IO.sysopen -1
  987. IO.try_convert 1
  988. IO.write -1
  989. IO#<< 1
  990. IO#advise -1
  991. IO#autoclose= 1
  992. IO#autoclose? 0
  993. IO#binmode 0
  994. IO#binmode? 0
  995. IO#bytes 0
  996. IO#chars 0
  997. IO#close 0
  998. IO#close_on_exec= 1
  999. IO#close_on_exec? 0
  1000. IO#close_read 0
  1001. IO#close_write 0
  1002. IO#closed? 0
  1003. IO#codepoints 0
  1004. IO#each -1
  1005. IO#each_byte 0
  1006. IO#each_char 0
  1007. IO#each_codepoint 0
  1008. IO#each_line -1
  1009. IO#eof 0
  1010. IO#eof? 0
  1011. IO#external_encoding 0
  1012. IO#fcntl -1
  1013. IO#fdatasync 0
  1014. IO#fileno 0
  1015. IO#flush 0
  1016. IO#fsync 0
  1017. IO#getbyte 0
  1018. IO#getc 0
  1019. IO#gets -1
  1020. IO#initialize -1
  1021. IO#inspect 0
  1022. IO#internal_encoding 0
  1023. IO#ioctl -1
  1024. IO#isatty 0
  1025. IO#lineno 0
  1026. IO#lineno= 1
  1027. IO#lines -1
  1028. IO#pid 0
  1029. IO#pos 0
  1030. IO#pos= 1
  1031. IO#pread -1
  1032. IO#print -1
  1033. IO#printf -1
  1034. IO#putc 1
  1035. IO#puts -1
  1036. IO#pwrite 2
  1037. IO#read -1
  1038. IO#readbyte 0
  1039. IO#readchar 0
  1040. IO#readline -1
  1041. IO#readlines -1
  1042. IO#readpartial -1
  1043. IO#reopen -1
  1044. IO#rewind 0
  1045. IO#seek -1
  1046. IO#set_encoding -1
  1047. IO#set_encoding_by_bom 0
  1048. IO#stat 0
  1049. IO#sync 0
  1050. IO#sync= 1
  1051. IO#sysread -1
  1052. IO#sysseek -1
  1053. IO#syswrite 1
  1054. IO#tell 0
  1055. IO#to_i 0
  1056. IO#to_io 0
  1057. IO#tty? 0
  1058. IO#ungetbyte 1
  1059. IO#ungetc 1
  1060. IO#write -1
  1061. class IO::EAGAINWaitReadable [IO::WaitReadable, Errno::EAGAIN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  1062. class IO::EAGAINWaitWritable [IO::WaitWritable, Errno::EAGAIN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  1063. class IO::EINPROGRESSWaitReadable [IO::WaitReadable, Errno::EINPROGRESS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  1064. class IO::EINPROGRESSWaitWritable [IO::WaitWritable, Errno::EINPROGRESS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject]
  1065. module IO::WaitReadable []
  1066. module IO::WaitWritable []
  1067. class IOError [StandardError, Exception, Object, Kernel, BasicObject]
  1068. class IndexError [StandardError, Exception, Object, Kernel, BasicObject]
  1069. class Integer [Numeric, Comparable, Object, Kernel, BasicObject]
  1070. Integer.sqrt 1
  1071. Integer#% 1
  1072. Integer#& 1
  1073. Integer#* 1
  1074. Integer#** 1
  1075. Integer#+ 1
  1076. Integer#- 1
  1077. Integer#-@ 0
  1078. Integer#/ 1
  1079. Integer#< 1
  1080. Integer#<< 1
  1081. Integer#<= 1
  1082. Integer#<=> 1
  1083. Integer#== 1
  1084. Integer#=== 1
  1085. Integer#> 1
  1086. Integer#>= 1
  1087. Integer#>> 1
  1088. Integer#[] -1
  1089. Integer#^ 1
  1090. Integer#abs 0
  1091. Integer#allbits? 1
  1092. Integer#anybits? 1
  1093. Integer#bit_length 0
  1094. Integer#ceil -1
  1095. Integer#chr -1
  1096. Integer#coerce 1
  1097. Integer#denominator 0
  1098. Integer#digits -1
  1099. Integer#div 1
  1100. Integer#divmod 1
  1101. Integer#downto 1
  1102. Integer#even? 0
  1103. Integer#fdiv 1
  1104. Integer#floor -1
  1105. Integer#gcd 1
  1106. Integer#gcdlcm 1
  1107. Integer#inspect -1
  1108. Integer#integer? 0
  1109. Integer#lcm 1
  1110. Integer#magnitude 0
  1111. Integer#modulo 1
  1112. Integer#next 0
  1113. Integer#nobits? 1
  1114. Integer#numerator 0
  1115. Integer#odd? 0
  1116. Integer#ord 0
  1117. Integer#pow -1
  1118. Integer#pred 0
  1119. Integer#rationalize -1
  1120. Integer#remainder 1
  1121. Integer#round -1
  1122. Integer#size 0
  1123. Integer#succ 0
  1124. Integer#times 0
  1125. Integer#to_f 0
  1126. Integer#to_i 0
  1127. Integer#to_int 0
  1128. Integer#to_r 0
  1129. Integer#to_s -1
  1130. Integer#truncate -1
  1131. Integer#upto 1
  1132. Integer#| 1
  1133. Integer#~ 0
  1134. class Interrupt [SignalException, Exception, Object, Kernel, BasicObject]
  1135. Interrupt#initialize -1
  1136. module Kernel []
  1137. Kernel.Array 1
  1138. Kernel.Complex -1
  1139. Kernel.Float -1
  1140. Kernel.Hash 1
  1141. Kernel.Integer -1
  1142. Kernel.Rational -1
  1143. Kernel.String 1
  1144. Kernel.__callee__ 0
  1145. Kernel.__dir__ 0
  1146. Kernel.__method__ 0
  1147. Kernel.` 1
  1148. Kernel.abort -1
  1149. Kernel.at_exit 0
  1150. Kernel.autoload 2
  1151. Kernel.autoload? -1
  1152. Kernel.binding 0
  1153. Kernel.block_given? 0
  1154. Kernel.caller -1
  1155. Kernel.caller_locations -1
  1156. Kernel.catch -1
  1157. Kernel.eval -1
  1158. Kernel.exec -1
  1159. Kernel.exit -1
  1160. Kernel.exit! -1
  1161. Kernel.fail -1
  1162. Kernel.fork 0
  1163. Kernel.format -1
  1164. Kernel.gets -1
  1165. Kernel.global_variables 0
  1166. Kernel.iterator? 0
  1167. Kernel.lambda 0
  1168. Kernel.load -1
  1169. Kernel.local_variables 0
  1170. Kernel.loop 0
  1171. Kernel.open -1
  1172. Kernel.p -1
  1173. Kernel.print -1
  1174. Kernel.printf -1
  1175. Kernel.proc 0
  1176. Kernel.putc 1
  1177. Kernel.puts -1
  1178. Kernel.raise -1
  1179. Kernel.rand -1
  1180. Kernel.readline -1
  1181. Kernel.readlines -1
  1182. Kernel.require 1
  1183. Kernel.require_relative 1
  1184. Kernel.select -1
  1185. Kernel.set_trace_func 1
  1186. Kernel.sleep -1
  1187. Kernel.spawn -1
  1188. Kernel.sprintf -1
  1189. Kernel.srand -1
  1190. Kernel.syscall -1
  1191. Kernel.system -1
  1192. Kernel.test -1
  1193. Kernel.throw -1
  1194. Kernel.trace_var -1
  1195. Kernel.trap -1
  1196. Kernel.untrace_var -1
  1197. Kernel.warn -1
  1198. Kernel#!~ 1
  1199. Kernel#<=> 1
  1200. Kernel#=== 1
  1201. Kernel#=~ 1
  1202. Kernel#class 0
  1203. Kernel#clone -1
  1204. Kernel#define_singleton_method -1
  1205. Kernel#display -1
  1206. Kernel#dup 0
  1207. Kernel#enum_for -1
  1208. Kernel#eql? 1
  1209. Kernel#extend -1
  1210. Kernel#freeze 0
  1211. Kernel#frozen? 0
  1212. Kernel#hash 0
  1213. Kernel#inspect 0
  1214. Kernel#instance_of? 1
  1215. Kernel#instance_variable_defined? 1
  1216. Kernel#instance_variable_get 1
  1217. Kernel#instance_variable_set 2
  1218. Kernel#instance_variables 0
  1219. Kernel#is_a? 1
  1220. Kernel#itself 0
  1221. Kernel#kind_of? 1
  1222. Kernel#method 1
  1223. Kernel#methods -1
  1224. Kernel#nil? 0
  1225. Kernel#object_id 0
  1226. Kernel#private_methods -1
  1227. Kernel#protected_methods -1
  1228. Kernel#public_method 1
  1229. Kernel#public_methods -1
  1230. Kernel#public_send -1
  1231. Kernel#remove_instance_variable 1
  1232. Kernel#respond_to? -1
  1233. Kernel#send -1
  1234. Kernel#singleton_class 0
  1235. Kernel#singleton_method 1
  1236. Kernel#singleton_methods -1
  1237. Kernel#taint 0
  1238. Kernel#tainted? 0
  1239. Kernel#tap 0
  1240. Kernel#then 0
  1241. Kernel#to_enum -1
  1242. Kernel#to_s 0
  1243. Kernel#trust 0
  1244. Kernel#untaint 0
  1245. Kernel#untrust 0
  1246. Kernel#untrusted? 0
  1247. Kernel#yield_self 0
  1248. class KeyError [IndexError, StandardError, Exception, Object, Kernel, BasicObject]
  1249. KeyError#initialize -1
  1250. KeyError#key 0
  1251. KeyError#receiver 0
  1252. class LoadError [ScriptError, Exception, Object, Kernel, BasicObject]
  1253. -e:27: [BUG] Segmentation fault at 0x0000000000000008
  1254. ruby 2.7.0dev (2019-09-30T01:31:08Z master 649a64ae29) [x86_64-linux]
  1255.  
  1256. -- Control frame information -----------------------------------------------
  1257. c:0007 p:---- s:0035 e:000034 CFUNC :inspect
  1258. c:0006 p:0077 s:0031 e:000029 BLOCK -e:27 [FINISH]
  1259. c:0005 p:---- s:0024 e:000023 CFUNC :each
  1260. c:0004 p:0180 s:0020 e:000019 BLOCK -e:23 [FINISH]
  1261. c:0003 p:---- s:0014 e:000013 CFUNC :each
  1262. c:0002 p:0079 s:0010 E:000f10 EVAL -e:6 [FINISH]
  1263. c:0001 p:0000 s:0003 E:000730 (none) [FINISH]
  1264.  
  1265. -- Ruby level backtrace information ----------------------------------------
  1266. -e:6:in `<main>'
  1267. -e:6:in `each'
  1268. -e:23:in `block in <main>'
  1269. -e:23:in `each'
  1270. -e:27:in `block (2 levels) in <main>'
  1271. -e:27:in `inspect'
  1272.  
  1273. -- Machine register context ------------------------------------------------
  1274. RIP: 0x0000562f1ad8fb27 RBP: 0x0000000000000008 RSP: 0x00007fffb35f8250
  1275. RAX: 0x0000000000000008 RBX: 0x0000562f1baec9f0 RCX: 0x0000000000102005
  1276. RDX: 0x0000562f1bb7bf20 RDI: 0x0000000000000008 RSI: 0x0000562f1b0e4640
  1277. R8: 0x0000000000000000 R9: 0xffffffffffffffff R10: 0x0000000000000011
  1278. R11: 0x0000000000000000 R12: 0x0000562f1bb2ac50 R13: 0x0000562f1baeca68
  1279. R14: 0x0000562f1bb2ac50 R15: 0x0000562f1b01f0e7 EFL: 0x0000000000010202
  1280.  
  1281. -- C level backtrace information -------------------------------------------
  1282. /home/mame/work/ruby/miniruby(rb_vm_bugreport+0x554) [0x562f1afe2774] vm_dump.c:717
  1283. /home/mame/work/ruby/miniruby(rb_bug_context+0xe8) [0x562f1ae15ac8] error.c:611
  1284. /home/mame/work/ruby/miniruby(sigsegv+0x42) [0x562f1af4a512] signal.c:964
  1285. /lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f236d33ef40]
  1286. /home/mame/work/ruby/miniruby(rb_array_len+0x0) [0x562f1ad8fb27] array.c:2237
  1287. /home/mame/work/ruby/miniruby(rb_ary_dup) array.c:2238
  1288. /home/mame/work/ruby/miniruby(method_def_location+0x45) [0x562f1aef4365] proc.c:2715
  1289. /home/mame/work/ruby/miniruby(rb_method_location) proc.c:2751
  1290. /home/mame/work/ruby/miniruby(method_inspect+0x13f) [0x562f1aef44ef] proc.c:2861
  1291. /home/mame/work/ruby/miniruby(vm_cfp_consistent_p+0x0) [0x562f1afc302b] vm_insnhelper.c:2276
  1292. /home/mame/work/ruby/miniruby(vm_call_cfunc_with_frame) vm_insnhelper.c:2278
  1293. /home/mame/work/ruby/miniruby(vm_call_cfunc) vm_insnhelper.c:2300
  1294. /home/mame/work/ruby/miniruby(vm_sendish+0x5a) [0x562f1afd43de] vm_insnhelper.c:3759
  1295. /home/mame/work/ruby/miniruby(vm_exec_core) insns.def:810
  1296. /home/mame/work/ruby/miniruby(rb_vm_exec+0xa8) [0x562f1afcbe78] vm.c:1894
  1297. /home/mame/work/ruby/miniruby(invoke_iseq_block_from_c+0xb0) [0x562f1afcd879] vm.c:1103
  1298. /home/mame/work/ruby/miniruby(invoke_block_from_c_bh) vm.c:1121
  1299. /home/mame/work/ruby/miniruby(vm_yield) vm.c:1166
  1300. /home/mame/work/ruby/miniruby(rb_yield_0) vm_eval.c:1233
  1301. /home/mame/work/ruby/miniruby(rb_yield_1) vm_eval.c:1239
  1302. /home/mame/work/ruby/miniruby(rb_yield) vm_eval.c:1249
  1303. /home/mame/work/ruby/miniruby(rb_array_len+0x0) [0x562f1ad87b6c] array.c:2133
  1304. /home/mame/work/ruby/miniruby(rb_ary_each) array.c:2132
  1305. /home/mame/work/ruby/miniruby(vm_cfp_consistent_p+0x0) [0x562f1afc302b] vm_insnhelper.c:2276
  1306. /home/mame/work/ruby/miniruby(vm_call_cfunc_with_frame) vm_insnhelper.c:2278
  1307. /home/mame/work/ruby/miniruby(vm_call_cfunc) vm_insnhelper.c:2300
  1308. /home/mame/work/ruby/miniruby(vm_sendish+0x5b) [0x562f1afd449d] vm_insnhelper.c:3759
  1309. /home/mame/work/ruby/miniruby(vm_exec_core) insns.def:792
  1310. /home/mame/work/ruby/miniruby(rb_vm_exec+0xa8) [0x562f1afcbe78] vm.c:1894
  1311. /home/mame/work/ruby/miniruby(invoke_iseq_block_from_c+0xb0) [0x562f1afcd879] vm.c:1103
  1312. /home/mame/work/ruby/miniruby(invoke_block_from_c_bh) vm.c:1121
  1313. /home/mame/work/ruby/miniruby(vm_yield) vm.c:1166
  1314. /home/mame/work/ruby/miniruby(rb_yield_0) vm_eval.c:1233
  1315. /home/mame/work/ruby/miniruby(rb_yield_1) vm_eval.c:1239
  1316. /home/mame/work/ruby/miniruby(rb_yield) vm_eval.c:1249
  1317. /home/mame/work/ruby/miniruby(rb_array_len+0x0) [0x562f1ad87b6c] array.c:2133
  1318. /home/mame/work/ruby/miniruby(rb_ary_each) array.c:2132
  1319. /home/mame/work/ruby/miniruby(vm_cfp_consistent_p+0x0) [0x562f1afc302b] vm_insnhelper.c:2276
  1320. /home/mame/work/ruby/miniruby(vm_call_cfunc_with_frame) vm_insnhelper.c:2278
  1321. /home/mame/work/ruby/miniruby(vm_call_cfunc) vm_insnhelper.c:2300
  1322. /home/mame/work/ruby/miniruby(vm_call_method_each_type+0xff) [0x562f1afd9daf] vm_insnhelper.c:2677
  1323. /home/mame/work/ruby/miniruby(vm_call_method+0x55) [0x562f1afda495] vm_insnhelper.c:2773
  1324. /home/mame/work/ruby/miniruby(vm_sendish+0x5b) [0x562f1afd449d] vm_insnhelper.c:3759
  1325. /home/mame/work/ruby/miniruby(vm_exec_core) insns.def:792
  1326. /home/mame/work/ruby/miniruby(rb_vm_exec+0xa8) [0x562f1afcbe78] vm.c:1894
  1327. /home/mame/work/ruby/miniruby(rb_ec_exec_node+0xbc) [0x562f1ae1a4dc] eval.c:273
  1328. /home/mame/work/ruby/miniruby(ruby_run_node+0x46) [0x562f1ae1e706] eval.c:331
  1329. /home/mame/work/ruby/miniruby(main+0x6f) [0x562f1ad8124f] ./main.c:50
  1330.  
  1331. -- Other runtime information -----------------------------------------------
  1332.  
  1333. * Loaded script: -e
  1334.  
  1335. * Loaded features:
  1336.  
  1337. 0 enumerator.so
  1338. 1 thread.rb
  1339. 2 rational.so
  1340. 3 complex.so
  1341.  
  1342. * Process memory map:
  1343.  
  1344. 562f1ad57000-562f1ad7c000 r--p 00000000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1345. 562f1ad7c000-562f1afef000 r-xp 00025000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1346. 562f1afef000-562f1b0e1000 r--p 00298000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1347. 562f1b0e2000-562f1b0e8000 r--p 0038a000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1348. 562f1b0e8000-562f1b0e9000 rw-p 00390000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1349. 562f1b0e9000-562f1b0ff000 rw-p 00000000 00:00 0
  1350. 562f1bad2000-562f1bc29000 rw-p 00000000 00:00 0 [heap]
  1351. 7f23679d1000-7f2367bba000 r--s 00000000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1352. 7f2367bba000-7f236934e000 r--s 00000000 fd:00 7081451 /home/mame/work/ruby/miniruby
  1353. 7f236934e000-7f2369351000 r--p 00000000 fd:00 19267617 /lib/x86_64-linux-gnu/libgcc_s.so.1
  1354. 7f2369351000-7f2369362000 r-xp 00003000 fd:00 19267617 /lib/x86_64-linux-gnu/libgcc_s.so.1
  1355. 7f2369362000-7f2369366000 r--p 00014000 fd:00 19267617 /lib/x86_64-linux-gnu/libgcc_s.so.1
  1356. 7f2369366000-7f2369367000 r--p 00017000 fd:00 19267617 /lib/x86_64-linux-gnu/libgcc_s.so.1
  1357. 7f2369367000-7f2369368000 rw-p 00018000 fd:00 19267617 /lib/x86_64-linux-gnu/libgcc_s.so.1
  1358. 7f2369368000-7f2369369000 ---p 00000000 00:00 0
  1359. 7f2369369000-7f236940a000 rw-p 00000000 00:00 0
  1360. 7f236940a000-7f236940b000 ---p 00000000 00:00 0
  1361. 7f236940b000-7f23694ac000 rw-p 00000000 00:00 0
  1362. 7f23694ac000-7f23694ad000 ---p 00000000 00:00 0
  1363. 7f23694ad000-7f236954e000 rw-p 00000000 00:00 0
  1364. 7f236954e000-7f236954f000 ---p 00000000 00:00 0
  1365. 7f236954f000-7f23695f0000 rw-p 00000000 00:00 0
  1366. 7f23695f0000-7f23695f1000 ---p 00000000 00:00 0
  1367. 7f23695f1000-7f2369692000 rw-p 00000000 00:00 0
  1368. 7f2369692000-7f2369693000 ---p 00000000 00:00 0
  1369. 7f2369693000-7f2369734000 rw-p 00000000 00:00 0
  1370. 7f2369734000-7f2369735000 ---p 00000000 00:00 0
  1371. 7f2369735000-7f23697d6000 rw-p 00000000 00:00 0
  1372. 7f23697d6000-7f23697d7000 ---p 00000000 00:00 0
  1373. 7f23697d7000-7f2369878000 rw-p 00000000 00:00 0
  1374. 7f2369878000-7f2369879000 ---p 00000000 00:00 0
  1375. 7f2369879000-7f236991a000 rw-p 00000000 00:00 0
  1376. 7f236991a000-7f236991b000 ---p 00000000 00:00 0
  1377. 7f236991b000-7f23699bc000 rw-p 00000000 00:00 0
  1378. 7f23699bc000-7f23699bd000 ---p 00000000 00:00 0
  1379. 7f23699bd000-7f2369a5e000 rw-p 00000000 00:00 0
  1380. 7f2369a5e000-7f2369a5f000 ---p 00000000 00:00 0
  1381. 7f2369a5f000-7f2369b00000 rw-p 00000000 00:00 0
  1382. 7f2369b00000-7f2369b01000 ---p 00000000 00:00 0
  1383. 7f2369b01000-7f2369ba2000 rw-p 00000000 00:00 0
  1384. 7f2369ba2000-7f2369ba3000 ---p 00000000 00:00 0
  1385. 7f2369ba3000-7f2369c44000 rw-p 00000000 00:00 0
  1386. 7f2369c44000-7f2369c45000 ---p 00000000 00:00 0
  1387. 7f2369c45000-7f2369ce6000 rw-p 00000000 00:00 0
  1388. 7f2369ce6000-7f2369ce7000 ---p 00000000 00:00 0
  1389. 7f2369ce7000-7f2369d88000 rw-p 00000000 00:00 0
  1390. 7f2369d88000-7f2369d89000 ---p 00000000 00:00 0
  1391. 7f2369d89000-7f2369e2a000 rw-p 00000000 00:00 0
  1392. 7f2369e2a000-7f2369e2b000 ---p 00000000 00:00 0
  1393. 7f2369e2b000-7f2369ecc000 rw-p 00000000 00:00 0
  1394. 7f2369ecc000-7f2369ecd000 ---p 00000000 00:00 0
  1395. 7f2369ecd000-7f2369f6e000 rw-p 00000000 00:00 0
  1396. 7f2369f6e000-7f2369f6f000 ---p 00000000 00:00 0
  1397. 7f2369f6f000-7f236a010000 rw-p 00000000 00:00 0
  1398. 7f236a010000-7f236a011000 ---p 00000000 00:00 0
  1399. 7f236a011000-7f236a0b2000 rw-p 00000000 00:00 0
  1400. 7f236a0b2000-7f236a0b3000 ---p 00000000 00:00 0
  1401. 7f236a0b3000-7f236a154000 rw-p 00000000 00:00 0
  1402. 7f236a154000-7f236a155000 ---p 00000000 00:00 0
  1403. 7f236a155000-7f236a1f6000 rw-p 00000000 00:00 0
  1404. 7f236a1f6000-7f236a1f7000 ---p 00000000 00:00 0
  1405. 7f236a1f7000-7f236a298000 rw-p 00000000 00:00 0
  1406. 7f236a298000-7f236a299000 ---p 00000000 00:00 0
  1407. 7f236a299000-7f236a33a000 rw-p 00000000 00:00 0
  1408. 7f236a33a000-7f236a33b000 ---p 00000000 00:00 0
  1409. 7f236a33b000-7f236a3dc000 rw-p 00000000 00:00 0
  1410. 7f236a3dc000-7f236a3dd000 ---p 00000000 00:00 0
  1411. 7f236a3dd000-7f236a47e000 rw-p 00000000 00:00 0
  1412. 7f236a47e000-7f236a47f000 ---p 00000000 00:00 0
  1413. 7f236a47f000-7f236a520000 rw-p 00000000 00:00 0
  1414. 7f236a520000-7f236a521000 ---p 00000000 00:00 0
  1415. 7f236a521000-7f236a5c2000 rw-p 00000000 00:00 0
  1416. 7f236a5c2000-7f236a5c3000 ---p 00000000 00:00 0
  1417. 7f236a5c3000-7f236a664000 rw-p 00000000 00:00 0
  1418. 7f236a664000-7f236a665000 ---p 00000000 00:00 0
  1419. 7f236a665000-7f236a706000 rw-p 00000000 00:00 0
  1420. 7f236a706000-7f236a707000 ---p 00000000 00:00 0
  1421. 7f236a707000-7f236c8b2000 rw-p 00000000 00:00 0
  1422. 7f236c8b2000-7f236cf22000 r--p 00000000 fd:00 12976557 /usr/lib/locale/locale-archive
  1423. 7f236cf22000-7f236cf24000 rw-p 00000000 00:00 0
  1424. 7f236cf24000-7f236cf49000 r--p 00000000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1425. 7f236cf49000-7f236d0bc000 r-xp 00025000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1426. 7f236d0bc000-7f236d105000 r--p 00198000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1427. 7f236d105000-7f236d108000 r--p 001e0000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1428. 7f236d108000-7f236d10b000 rw-p 001e3000 fd:00 19268902 /lib/x86_64-linux-gnu/libc-2.29.so
  1429. 7f236d10b000-7f236d10f000 rw-p 00000000 00:00 0
  1430. 7f236d10f000-7f236d11e000 r--p 00000000 fd:00 19269337 /lib/x86_64-linux-gnu/libm-2.29.so
  1431. 7f236d11e000-7f236d1c4000 r-xp 0000f000 fd:00 19269337 /lib/x86_64-linux-gnu/libm-2.29.so
  1432. 7f236d1c4000-7f236d25b000 r--p 000b5000 fd:00 19269337 /lib/x86_64-linux-gnu/libm-2.29.so
  1433. 7f236d25b000-7f236d25c000 r--p 0014b000 fd:00 19269337 /lib/x86_64-linux-gnu/libm-2.29.so
  1434. 7f236d25c000-7f236d25d000 rw-p 0014c000 fd:00 19269337 /lib/x86_64-linux-gnu/libm-2.29.so
  1435. 7f236d25d000-7f236d25f000 rw-p 00000000 00:00 0
  1436. 7f236d25f000-7f236d260000 r--p 00000000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1437. 7f236d260000-7f236d266000 r-xp 00001000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1438. 7f236d266000-7f236d268000 r--p 00007000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1439. 7f236d268000-7f236d269000 ---p 00009000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1440. 7f236d269000-7f236d26a000 r--p 00009000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1441. 7f236d26a000-7f236d26b000 rw-p 0000a000 fd:00 19269264 /lib/x86_64-linux-gnu/libcrypt-2.29.so
  1442. 7f236d26b000-7f236d299000 rw-p 00000000 00:00 0
  1443. 7f236d299000-7f236d29a000 r--p 00000000 fd:00 19269333 /lib/x86_64-linux-gnu/libdl-2.29.so
  1444. 7f236d29a000-7f236d29c000 r-xp 00001000 fd:00 19269333 /lib/x86_64-linux-gnu/libdl-2.29.so
  1445. 7f236d29c000-7f236d29d000 r--p 00003000 fd:00 19269333 /lib/x86_64-linux-gnu/libdl-2.29.so
  1446. 7f236d29d000-7f236d29e000 r--p 00003000 fd:00 19269333 /lib/x86_64-linux-gnu/libdl-2.29.so
  1447. 7f236d29e000-7f236d29f000 rw-p 00004000 fd:00 19269333 /lib/x86_64-linux-gnu/libdl-2.29.so
  1448. 7f236d29f000-7f236d2a9000 r--p 00000000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1449. 7f236d2a9000-7f236d306000 r-xp 0000a000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1450. 7f236d306000-7f236d31d000 r--p 00067000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1451. 7f236d31d000-7f236d31e000 ---p 0007e000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1452. 7f236d31e000-7f236d31f000 r--p 0007e000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1453. 7f236d31f000-7f236d320000 rw-p 0007f000 fd:00 12980257 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
  1454. 7f236d320000-7f236d323000 r--p 00000000 fd:00 19269452 /lib/x86_64-linux-gnu/librt-2.29.so
  1455. 7f236d323000-7f236d327000 r-xp 00003000 fd:00 19269452 /lib/x86_64-linux-gnu/librt-2.29.so
  1456. 7f236d327000-7f236d329000 r--p 00007000 fd:00 19269452 /lib/x86_64-linux-gnu/librt-2.29.so
  1457. 7f236d329000-7f236d32a000 r--p 00008000 fd:00 19269452 /lib/x86_64-linux-gnu/librt-2.29.so
  1458. 7f236d32a000-7f236d32b000 rw-p 00009000 fd:00 19269452 /lib/x86_64-linux-gnu/librt-2.29.so
  1459. 7f236d32b000-7f236d332000 r--p 00000000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1460. 7f236d332000-7f236d341000 r-xp 00007000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1461. 7f236d341000-7f236d346000 r--p 00016000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1462. 7f236d346000-7f236d347000 r--p 0001a000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1463. 7f236d347000-7f236d348000 rw-p 0001b000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1464. 7f236d348000-7f236d34c000 rw-p 00000000 00:00 0
  1465. 7f236d34c000-7f236d34e000 r--p 00000000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1466. 7f236d34e000-7f236d35f000 r-xp 00002000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1467. 7f236d35f000-7f236d365000 r--p 00013000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1468. 7f236d365000-7f236d366000 ---p 00019000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1469. 7f236d366000-7f236d367000 r--p 00019000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1470. 7f236d367000-7f236d368000 rw-p 0001a000 fd:00 19268775 /lib/x86_64-linux-gnu/libz.so.1.2.11
  1471. 7f236d368000-7f236d36a000 rw-p 00000000 00:00 0
  1472. 7f236d375000-7f236d39a000 r--s 00000000 fd:00 19269447 /lib/x86_64-linux-gnu/libpthread-2.29.so
  1473. 7f236d39a000-7f236d39b000 r--p 00000000 fd:00 19267638 /lib/x86_64-linux-gnu/ld-2.29.so
  1474. 7f236d39b000-7f236d3bc000 r-xp 00001000 fd:00 19267638 /lib/x86_64-linux-gnu/ld-2.29.so
  1475. 7f236d3bc000-7f236d3c4000 r--p 00022000 fd:00 19267638 /lib/x86_64-linux-gnu/ld-2.29.so
  1476. 7f236d3c4000-7f236d3c5000 r--p 00029000 fd:00 19267638 /lib/x86_64-linux-gnu/ld-2.29.so
  1477. 7f236d3c5000-7f236d3c6000 rw-p 0002a000 fd:00 19267638 /lib/x86_64-linux-gnu/ld-2.29.so
  1478. 7f236d3c6000-7f236d3c7000 rw-p 00000000 00:00 0
  1479. 7fffb2dfc000-7fffb35fb000 rw-p 00000000 00:00 0 [stack]
  1480. 7fffb35fc000-7fffb35ff000 r--p 00000000 00:00 0 [vvar]
  1481. 7fffb35ff000-7fffb3600000 r-xp 00000000 00:00 0 [vdso]
  1482. ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
  1483.  
  1484.  
  1485. 中止 (コアダンプ)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement