るりまサーチ

最速Rubyリファレンスマニュアル検索!
59件ヒット [1-59件を表示] (0.012秒)
トップページ > クエリ:max[x] > 種類:関数[x]

別のキーワード

  1. _builtin max
  2. enumerable max
  3. _builtin max_by
  4. enumerable max_by
  5. range max

キーワード

検索結果

static void copy_fds(fd_set *dst, fd_set *src, int max) (117.0)

fd_set src を dst にコピーします。 max は select(2) の第一引数と同じ意味です。

...fd_set src を dst にコピーします。
max
は select(2) の第一引数と同じ意味です。...

int rb_thread_select(int max, fd_set *read, fd_set *write, fd_set *except, struct timeval *timeout) (101.0)

この関数は deprecated です。rb_thread_fd_select を使用してください。

この関数は deprecated です。rb_thread_fd_select を使用してください。

Ruby のスレッドは実装のために内部で select(2) を使っているため、
拡張ライブラリ内で独自に select(2) を使った場合の動作は保証されません。
代わりにこの関数 rb_thread_select を使ってください。
引数の意味は select(2) と同じです。

static int find_bad_fds(fd_set *dst, fd_set *src, int max) (101.0)

static int intersect_fds(fd_set *src, fd_set *dst, int max) (101.0)

static int match_fds(fd_set *dst, fd_set *src, int max) (101.0)

絞り込み条件を変える

VALUE rb_time_timespec_new(const struct timespec *ts, int offset) (13.0)

引数 ts、offset を元に Time オブジェクトを作成して返します。

...ffset 協定世界時との時差(秒)。
-86400 < offset < 86400 の場合は指定した時差に、INT_MAX
を指定した場合は地方時、INT_MAX-1 を指定した場合は UTC に
なります。

@raise ArgumentError offset に上述の範囲以外...