1011件ヒット
[1-100件を表示]
(0.093秒)
ライブラリ
- English (60)
- ビルトイン (228)
-
cgi
/ core (12) -
cgi
/ session (12) - csv (48)
-
irb
/ context (12) -
irb
/ output-method (96) -
minitest
/ unit (1) -
net
/ http (12) - nkf (12)
- prettyprint (60)
- psych (12)
- rake (48)
- readline (12)
-
rexml
/ document (120) - rss (24)
-
rubygems
/ package / tar _ output (48) - shell (15)
-
shell
/ process-controller (6) - socket (12)
- win32ole (36)
- zlib (12)
クラス
- CGI (12)
-
CGI
:: Session (12) - CSV (48)
-
Encoding
:: Converter (60) -
Gem
:: Package :: TarOutput (48) - IO (168)
-
IRB
:: Context (12) -
IRB
:: OutputMethod (60) -
IRB
:: StdioOutputMethod (12) -
MiniTest
:: Unit (1) -
Net
:: HTTP (12) - PrettyPrint (60)
-
RDoc
:: Options (24) -
REXML
:: Attribute (12) -
REXML
:: Declaration (12) -
REXML
:: DocType (12) -
REXML
:: Document (24) -
REXML
:: Element (12) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: NotationDecl (12) -
Rake
:: Application (24) - Shell (15)
-
Shell
:: ProcessController (6) - UNIXSocket (12)
-
WIN32OLE
_ PARAM (36)
モジュール
- Kernel (60)
-
RSS
:: RootElementMixin (24) - Rake (24)
- Readline (12)
キーワード
-
$ DEFAULT _ OUTPUT (12) -
$ OFS (12) -
$ ORS (12) -
$ OUTPUT _ FIELD _ SEPARATOR (12) -
$ OUTPUT _ RECORD _ SEPARATOR (12) - Emitter (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - NKF (12)
- OutputMethod (12)
- StdioOutputMethod (12)
- Transitive (12)
- ZStream (12)
-
add
_ gem _ contents (12) -
add
_ signatures (12) - application (12)
- application= (12)
-
block
_ output _ synchronize (6) -
debug
_ output _ exclusive _ unlock (3) -
debug
_ output _ synchronize (6) -
debug
_ output _ unlock (6) - filter (36)
-
force
_ output (12) -
force
_ output= (12) - format (12)
- input? (12)
-
insert
_ output (12) -
irb
/ output-method (12) - new (72)
- open (12)
- output= (13)
- output? (12)
-
output
_ encoding (12) -
output
_ encoding= (12) - popen (168)
- pp (12)
- ppx (12)
- prettyprint (12)
-
primitive
_ convert (48) - print (36)
- printn (12)
- puts (12)
- rdoc (12)
- retval? (12)
-
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 9 feature (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ security (12) -
send
_ io (12) -
set
_ debug _ output (12) -
singleline
_ format (12) -
tty
_ output= (12) - write (108)
検索結果
先頭5件
-
irb
/ output-method (32000.0) -
irb が出力を扱うためのサブライブラリです。
...irb が出力を扱うためのサブライブラリです。... -
PrettyPrint
# output -> object (21117.0) -
自身の output を返します。
...自身の output を返します。... -
PrettyPrint
. singleline _ format(output = & # 39;& # 39; , maxwidth = 79 , newline = "\n" , genspace = lambda{|n| & # 39; & # 39; * n}) {|pp| . . . } -> object (15413.0) -
PrettyPrint オブジェクトを生成し、それを引数としてブロックを実行します。 PrettyPrint.format に似ていますが、改行しません。
...PrettyPrint オブジェクトを生成し、それを引数としてブロックを実行します。
PrettyPrint.format に似ていますが、改行しません。
引数 maxwidth, newline と genspace は無視されます。ブロック中の breakable の実行は、
改行せずに text......の実行であるかのように扱います。
@param output 出力先を指定します。output は << メソッドを持っていなければなりません。
@param maxwidth 無視されます。
@param newline 無視されます。
@param genspace 無視されます。... -
Encoding
:: Converter # insert _ output(string) -> nil (15319.0) -
変換器内のバッファに文字列を挿入します。 バッファに保持された文字列は、次の変換時の変換結果と一緒に返されます。
...string 挿入する文字列
//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "iso-8859-1")
src = "HIRAGANA LETTER A is \u{3042}."
dst = ""
p ec.primitive_convert(src, dst) #=> :undefined_conversion
puts "[#{dst.dump}, #{src.dump}]" #=> ["HIRAGANA LETTER A is ", "."]
ec.insert_output("<......r>")
p ec.primitive_convert(src, dst) #=> :finished
puts "[#{dst.dump}, #{src.dump}]" #=> ["HIRAGANA LETTER A is <err>.", ""]
ec = Encoding::Converter.new("utf-8", "iso-2022-jp")
src = "\u{306F 3041 3068 2661 3002}" # U+2661 is not representable in iso-2022-jp
dst = ""
p ec.primitive_convert(s......rc, dst) #=> :undefined_conversion
puts "[#{dst.dump}, #{src.dump}]" #=> ["\e$B$O$!$H".force_encoding("ISO-2022-JP"), "\xE3\ x80\x82"]
ec.insert_output "?" # state change required to output "?".
p ec.primitive_convert(src, dst) #=> :finished
puts "[#{dst.dump}, #{src.dump}... -
RSS
:: RootElementMixin # output _ encoding (12202.0) -
@todo
@todo -
RSS
:: RootElementMixin # output _ encoding= (12202.0) -
@todo
@todo -
Shell
. debug _ output _ exclusive _ unlock { . . . } -> Mutex | nil (12201.0) -
@todo
...@todo
@see Mutex#exclusive_unlock... -
Shell
. debug _ output _ synchronize (12201.0) -
@todo
...@todo
@see Mutex#synchronize......@todo
@see Thread::Mutex#synchronize... -
Shell
:: ProcessController . block _ output _ synchronize { . . . } -> () (12201.0) -
@todo
@todo -
IRB
:: StdioOutputMethod (12000.0) -
標準出力を表すクラスです。ライブラリ内部で使用します。
標準出力を表すクラスです。ライブラリ内部で使用します。 -
Rake
:: Application # tty _ output=(tty _ output _ state) (9244.0) -
TTY に対する出力状態を上書きします。
..._output_state 変更後の状態を指定します
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.tty_output? # => false
Rake.application.tty_output = "debug output" # => "debug output"
Rake.applicati......on.tty_output? # => "debug output"
end
//}...