File: try_dup.rb

package info (click to toggle)
ruby-extlib 0.9.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 576 kB
  • sloc: ruby: 7,014; makefile: 5
file content (44 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class Object
  # Override this in a child if it cannot be dup'ed
  #
  # @return [Object]
  def try_dup
    self.dup
  end
end

class TrueClass
  def try_dup
    self
  end
end

class FalseClass
  def try_dup
    self
  end
end

class Module
  def try_dup
    self
  end
end

class NilClass
  def try_dup
    self
  end
end

class Numeric
  def try_dup
    self
  end
end

class Symbol
  def try_dup
    self
  end
end