Sha256: fb1af2d3f843c3b66d61cebf3f34640e2fd974600f4fc15b12ede900ac48e116
Contents?: true
Size: 409 Bytes
Versions: 29
Compression:
Stored size: 409 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. class Symbol # Symbols are not duplicable: # # :my_symbol.duplicable? # => false # :my_symbol.dup # => TypeError: can't dup Symbol def duplicable? false end end
Version data entries
29 entries across 29 versions & 2 rubygems