96件ヒット
[1-96件を表示]
(0.030秒)
キーワード
-
convert
_ type (12) -
cvar
_ override _ check (12) -
delete
_ never (12) -
rb
_ check _ convert _ type (12) -
rb
_ convert _ type (12) -
rb
_ thread _ sleep _ forever (12) -
st
_ cleanup _ safe (12) -
st
_ delete _ safe (12)
検索結果
先頭5件
- static int delete
_ never(char *key , char *value , char *never) - VALUE rb
_ check _ convert _ type(VALUE val , int type , const char *tname , const char *method) - VALUE rb
_ convert _ type(VALUE val , int type , const char *tname , const char *method) - static VALUE convert
_ type(VALUE val , const char *tname , const char *method , int raise) - static void cvar
_ override _ check(VALUE id , VALUE a)
-
static int delete
_ never(char *key , char *value , char *never) (6201.0) -
st_cleanup_safe() のイテレータブロック。
st_cleanup_safe() のイテレータブロック。 -
VALUE rb
_ check _ convert _ type(VALUE val , int type , const char *tname , const char *method) (6101.0) -
val.method を実行してクラス tname のインスタンスを返します。 val がメソッド method を持たなければ nil を返します。
val.method を実行してクラス tname のインスタンスを返します。
val がメソッド method を持たなければ nil を返します。
type は、T_ARRAY, T_STRING などの構造体を表す ID です。
method の結果の型が type でなければ例外 TypeError が発生します。 -
VALUE rb
_ convert _ type(VALUE val , int type , const char *tname , const char *method) (6101.0) -
オブジェクト val をクラス type のインスタンスに変換します。 変換には、val.method の戻り値が使われます。
オブジェクト val をクラス type のインスタンスに変換します。
変換には、val.method の戻り値が使われます。
val がもともと type クラスのインスタンスなら val を
そのまま返します。 -
static VALUE convert
_ type(VALUE val , const char *tname , const char *method , int raise) (6101.0) -
-
static void cvar
_ override _ check(VALUE id , VALUE a) (6101.0) -
-
void rb
_ thread _ sleep _ forever(void) (6101.0) -
-
int st
_ delete _ safe(register st _ table *table , register char **key , char **value , char *never) (101.0) -
st_delete と似ているが、その場ですぐに削除するのではなく never を 書きこんでおく。st_cleanup_safe() で本当に削除できる。 Ruby では never には Qundef を使う。
...st_delete と似ているが、その場ですぐに削除するのではなく never を
書きこんでおく。st_cleanup_safe() で本当に削除できる。
Ruby では never には Qundef を使う。... -
void st
_ cleanup _ safe(st _ table *table , char *never) (101.0) -
never と同じ値を持つエントリーを削除する。
...never と同じ値を持つエントリーを削除する。...