713件ヒット
[1-100件を表示]
(0.113秒)
種類
- インスタンスメソッド (528)
- 文書 (77)
- ライブラリ (48)
- 特異メソッド (36)
- クラス (24)
ライブラリ
- ビルトイン (12)
- etc (24)
-
net
/ http (12) - rake (60)
-
rake
/ loaders / makefile (12) -
rdoc
/ code _ object (24) -
rdoc
/ context (48) -
rdoc
/ parser / simple (12) -
rdoc
/ text (24) -
rexml
/ document (168) -
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (60) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (48)
- zlib (24)
クラス
-
Etc
:: Passwd (24) -
RDoc
:: CodeObject (24) -
RDoc
:: Context (12) -
RDoc
:: Context :: Section (36) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Comment (108) -
REXML
:: DocType (36) -
REXML
:: Element (12) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Parsers :: SAX2Parser (60) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Rss :: Channel :: Item (24) -
Rake
:: MakefileLoader (12) -
Rake
:: Task (36) -
WEBrick
:: Cookie (24) -
Zlib
:: GzipFile (12) -
Zlib
:: GzipWriter (12)
モジュール
-
Net
:: HTTPHeader (12) -
RDoc
:: Text (24) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12) -
Rake
:: TaskManager (24)
キーワード
- <=> (12)
- == (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (12)
- Ruby用語集 (12)
- String (12)
-
attribute
_ of (12) -
attributes
_ of (12) - clone (12)
- comment (96)
- comment= (60)
- comment? (12)
- comments (36)
- comments= (24)
-
content
_ type (12) -
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12) - listen (60)
- load (12)
- new (36)
-
node
_ type (12) -
normalize
_ comment (12) - parse (12)
-
remove
_ private _ comments (12) -
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (12) -
rexml
/ parsers / streamparser (12) -
rexml
/ parsers / ultralightparser (12) -
ruby 1
. 6 feature (12) -
set
_ comment (12) -
set
_ current _ section (12) - string (12)
- string= (12)
-
to
_ s (12) - write (12)
- リテラル (12)
- 多言語化 (12)
- 正規表現 (12)
検索結果
先頭5件
-
NEWS for Ruby 3
. 0 . 0 (26012.0) -
NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...NEWS for Ruby 3.0.0
このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
それぞれのエントリーは参照情報があるため短いです。
十分な情報と共に書かれた全ての変更のリス......ord arguments are now separated from positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to autosplatting. This now matche......3]
end
//}
* Endless method definition is added. [EXPERIMENTAL]
16746
//emlist{
def square(x) = x * x
//}
* Interpolated String literals are no longer frozen when
`# frozen-string-literal: true` is used. 17104
* Magic comment `shareable_constant_value` added to freeze constants.... -
REXML
:: Comment (24000.0) -
XML コメントを表すクラス。
...コメントとは <!-- と --> で挟まれたテキストです。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<!-- xx -->
<root>
<!-- yy -->
text
<!-- zz -->
</root>
EOS
doc[0].string # => " xx "
doc.root[1].string # => " yy "
doc.root[3].string # => " zz "
//}... -
ruby 1
. 6 feature (23030.0) -
ruby 1.6 feature ruby version 1.6 は安定版です。この版での変更はバグ修正がメイン になります。
...uby version 1.6 は安定版です。この版での変更はバグ修正がメイン
になります。
((<stable-snapshot|URL:ftp://ftp.netlab.co.jp/pub/lang/ruby/stable-snapshot.tar.gz>)) は、日々更新される安定版の最新ソースです。
== 1.6.8 (2002-12-24) -> stable-snapshot
:......rno
EAGAIN と EWOULDBLOCK が同じ値のシステムで、EWOULDBLOCK がなくなっ
ていました。現在は、このようなシステムでは、EWOULDBLOCK は、EAGAIN
として定義されています。(これは 1.6.7 とは異なる挙動です)
p Errno::EAGAIN......-linux]
"#{ }"
=> ruby 1.6.7 (2002-09-25) [i586-linux]
""
これは1.7からのバックポートではありません。コメントの扱いなどは、1.7
とは異なります。(((<ruby 1.7 feature>)) の 2002-06-24 も参照)
p "#{ "" # comment }"... -
RDoc
:: Context :: Section # set _ comment(comment) -> () (15420.0) -
自身にコメントを設定します。
... comment 文字列を指定します。
comment の最初の行に :section: を含んでいた場合、その行以降の文字列をコ
メントとして設定します。そうでない場合は comment すべてをコメントとして
設定します。
# ---------------------
# :section... -
REXML
:: Element # comments -> [REXML :: Comments] (15416.0) -
すべての comment 子ノードの配列を返します。
...すべての comment 子ノードの配列を返します。
返される配列は freeze されます。... -
RDoc
:: Context :: Section # comment -> String | nil (15201.0) -
section のコメントを返します。
...section のコメントを返します。... -
REXML
:: Parsers :: PullEvent # comment? -> bool (15201.0) -
コメントノードなら真を返します。
コメントノードなら真を返します。 -
RDoc
:: CodeObject # comment=(comment) (12430.0) -
自身のコメントを comment に設定します。
...自身のコメントを comment に設定します。
ただし、comment が空文字列だった場合は何もしません。
@param comment コメントを文字列で指定します。... -
RDoc
:: Parser :: Simple # remove _ private _ comments(comment) -> String (12423.0) -
行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。
...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。
@param comment 対象の文字列を指定します。
@return コメントが削除された文字列を返します。...