るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.092秒)
トップページ > クエリ:l[x] > クエリ:new2[x]

別のキーワード

  1. kernel $-l
  2. matrix l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

ライブラリ

クラス

キーワード

検索結果

URI::FTP.new2(user, password, host, port, path, typecode = nil, arg_check = true) -> URI::FTP (18201.0)

URI::FTP オブジェクトを生成して返します。 引数の正当性を検査します。

...句規則に適合しているか否かを検査します。適合しない場合は例外 URI::InvalidComponentError が起ります。

@raise ArgumentError typecode が正当でなかった場合に発生します。

@raise URI::InvalidURIError 引数が invalid な場合に発生します。...

VALUE rb_ary_new2(long len) (6206.0)

長さ len 分だけメモリを確保した、 長さゼロの Ruby の配列を作成し返します。

...長さ len 分だけメモリを確保した、
長さゼロの Ruby の配列を作成し返します。

対応するRubyコード

ary = Array.new(len)

使用例

VALUE ary;
l
ong len;
...
ary = rb_ary_new2(len);...

VALUE rb_str_new2(const char *ptr) (6200.0)

rb_str_new(ptr, strlen(ptr))

...rb_str_new(ptr, strlen(ptr))...

xmlrpc (6006.0)

XML-RPC を扱うためのライブラリです。

...XML-RPC を扱うためのライブラリです。

このページは xmlrpc ライブラリのまとめのページであり、require 'xmlrpc' を実行しても
エラーになることに注意して下さい。

=== Author and Copyright

Copyright (C) 2001-2004 by Michael Neumann

Released und...
...erm of license as Ruby.

=== Overview

XMLRPC is a lightweight protocol that enables remote procedure calls over
HTTP. It is defined at http://www.xmlrpc.com.

XMLRPC allows you to create simple distributed computing solutions that span
computer languages. Its distinctive feature is its simplicity...
...t
implements remote procedures and a client that calls them. Very little code
is required to achieve either of these.

=== Example

Try the following code. It calls a standard demonstration remote procedure.

require 'xmlrpc/client'
require 'pp'

server = XMLRPC::Client.new2("http://xmlrpc-c...