66件ヒット
[1-66件を表示]
(0.276秒)
ライブラリ
- ビルトイン (66)
キーワード
-
all
_ symbols (11) - inspect (11)
- lchmod (11)
- new (11)
検索結果
先頭5件
-
ENV
. to _ s -> String (26118.0) -
環境変数を文字列化します。 Hash#to_s と同じように動作します。
...環境変数を文字列化します。 Hash#to_s と同じように動作します。... -
main
. to _ s -> "main" (23102.0) -
"main" を返します。
"main" を返します。 -
File
. lchmod(mode , *filename) -> Integer (8013.0) -
File.chmod と同様ですが、シンボリックリンクに関してリンクそのものの モードを変更します。
...生します。
//emlist[例][ruby]{
IO.write("testfile", "test")
File.symlink("testfile", "testlink")
File.lstat("testlink").ftype # => "link"
File.lchmod(0744, "testlink")
File.stat("testlink").mode.to_s(8) # => "100644"
File.lstat("testlink").mode.to_s(8) # => "120744"
//}... -
Range
. new(first , last , exclude _ end = false) -> Range (8013.0) -
first から last までの範囲オブジェクトを生成して返しま す。
...のオブジェクトの場合][ruby]{
MyInteger = Struct.new(:value) do
def succ
self.class.new(value + 1)
end
def <=>(other)
value <=> other.value
end
def to_s
value.to_s
end
end
Range.new(MyInteger.new(1), MyInteger.new(3)).each {|i| puts i }
# => 1
# 2
# 3
//}... -
Symbol
. all _ symbols -> [Symbol] (8013.0) -
定義済みの全てのシンボルオブジェクトの配列を返します。
...nd
p Symbol.all_symbols.select{|sym|sym.to_s.include? 'make'}
#=> [:make_1, :make_2]
re = #確実に生成されるように代入操作を行う
:make_1,
:'make_2',
:"#{number}",
'make_4'.intern
p Symbol.all_symbols.select{|sym|sym.to_s.include? 'make'}
#=> [:make_1, :make_2,... -
main
. inspect -> "main" (8002.0) -
"main" を返します。
"main" を返します。