GoLang Ds\Vector::find

request it (269)
GoLang replacement for PHP's Ds\Vector::find [edit | history]



Do you know a GoLang replacement for PHP's Ds\Vector::find? Write it!

PHP Ds\Vector::find

PHP original manual for Ds\Vector::find [ show | php.net ]

Ds\Vector::find

(PECL ds >= 1.0.0)

Ds\Vector::find Attempts to find a value's index

Description

public mixed Ds\Vector::find ( mixed $value )

Returns the index of the value, or FALSE if not found.

Parameters

value

The value to find.

Return Values

The index of the value, or FALSE if not found.

Note:

Values will be compared by value and by type.

Examples

Example #1 Ds\Vector::find() example

<?php
$vector 
= new \Ds\Vector(["a"1true]);

var_dump($vector->find("a")); // 0
var_dump($vector->find("b")); // false
var_dump($vector->find("1")); // false
var_dump($vector->find(1));   // 1
?>

The above example will output something similar to:

int(0)
bool(false)
bool(false)
int(1)