-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSingleton.html
104 lines (48 loc) · 2 KB
/
Singleton.html
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
title: Singleton
layout: default
---
<div class="main">
<div class="banner">
<span>Ruby on Rails 8.0.0</span><br />
<div class="type">Module</div>
<h1>
Singleton
</h1>
<ul class="files">
<li><a href="../files/activesupport/lib/active_support/core_ext/object/duplicable_rb.html">activesupport/lib/active_support/core_ext/object/duplicable.rb</a></li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<h2 id="methods">Methods</h2>
<ul>
<li>
<a href="#method-i-duplicable-3F">duplicable?</a>
</li>
</ul>
<!-- Methods -->
<h2 id="instance-public-methods">Instance Public methods</h2>
<div class="method">
<h3 id="method-i-duplicable-3F">
duplicable?()
</h3>
<div class="description">
<p><a href="Singleton.html"><code>Singleton</code></a> instances are not duplicable:</p>
<pre><code>Class.new.include(Singleton).instance.dup # TypeError (can't dup instance of singleton
</code></pre>
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 66
def duplicable?
false
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/activesupport/lib/active_support/core_ext/object/duplicable.rb#L66" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
</div>
</div>
</div>