This function returns the number one.
Parameters
Parameter | Description |
---|---|
a |
|
b number |
the second param |
c |
|
$3 Object |
|
$3.d |
|
$3.e |
|
$3.f |
This method has partially inferred params
Parameters
Parameter | Description |
---|---|
$0 Object |
|
$0.fishes String |
number of kinds of fish |
$0.foxes |
This method has a type in the description and a default in the code
Parameters
Parameter | Description |
---|---|
x [number](default 2) |
This is foo's documentation
The method
Parameters
Parameter | Description |
---|---|
x number |
Param to method |
Represents an IPv6 address
This tests our support of optional parameters
Parameters
Parameter | Description |
---|---|
address string |
An IPv6 address string |
groups [number] |
How many octets to parse (optional, default 8 ) |
third ?number |
A third argument |
foo [Array] |
to properly be parsed (optional, default [1] ) |
Examples
var address = new Address6('2001::/32');
Create a GeoJSON data source instance given an options object
This tests our support of nested parameters
Parameters
Parameter | Description |
---|---|
options [Object] |
optional options |
options.data (Object | string) |
A GeoJSON data object or URL to it. |
The latter is preferable in case of large GeoJSON files. | |
options.maxzoom [number] |
Maximum zoom to preserve detail at. (optional, default 14 ) |
options.buffer [number] |
Tile buffer on each side. |
options.tolerance [number] |
Simplification tolerance (higher means simpler). |
This tests our support for parameters with explicit types but with default values specified in code.
Parameters
Parameter | Description |
---|---|
x [number](default 123) |
an argument |
Returns number some
This tests our support of JSDoc param tags without type information, or any type information we could infer from annotations.
Parameters
Parameter | Description |
---|---|
address |
An IPv6 address string |