Skip to content

Commit

Permalink
Merge pull request #1403 from vim-jp/hh-update-builtin
Browse files Browse the repository at this point in the history
Update builtin.{txt,jax}
  • Loading branch information
h-east authored Dec 17, 2023
2 parents b76c61e + 0d8c3c7 commit 5b7edb6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
Expand Up @@ -4985,12 +4985,13 @@ insert({object}, {item} [, {idx}]) *insert()*
<
*instanceof()* *E614* *E616* *E693*
instanceof({object}, {class})
結果は数値で、{object} 引数が {class} で指定された |Class| の
直接または間接インスタンスである場合に |TRUE| となる。
{class} が |List| の場合、{object} が指定されたクラスのいずれ
かのインスタンスであるとき、この関数は |TRUE| を返す。
結果は数値で、{object} 引数が {class} で指定された |Class|,
|Interface|, または、クラスの |:type| エイリアスの直接または間
接インスタンスである場合に |TRUE| となる。
{class} が可変長引数の場合、{object} が指定されたクラスのいず
れかのインスタンスであるとき、この関数は |TRUE| を返す。
例: >
instanceof(animal, [Dog, Cat])
instanceof(animal, Dog, Cat)

< |method| としても使用できる: >
myobj->instanceof(mytype)
Expand Down
8 changes: 4 additions & 4 deletions en/builtin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5058,12 +5058,12 @@ insert({object}, {item} [, {idx}]) *insert()*
*instanceof()* *E614* *E616* *E693*
instanceof({object}, {class})
The result is a Number, which is |TRUE| when the {object}
argument is a direct or indirect instance of a |Class|
specified by {class}.
When {class} is a |List| the function returns |TRUE| when
argument is a direct or indirect instance of a |Class|,
|Interface|, or class |:type| alias specified by {class}.
If {class} is varargs, the function returns |TRUE| when
{object} is an instance of any of the specified classes.
Example: >
instanceof(animal, [Dog, Cat])
instanceof(animal, Dog, Cat)
< Can also be used as a |method|: >
myobj->instanceof(mytype)
Expand Down

0 comments on commit 5b7edb6

Please sign in to comment.