GoLang Ds\Vector::join

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



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

PHP Ds\Vector::join

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

Ds\Vector::join

(PECL ds >= 1.0.0)

Ds\Vector::joinJoins all values together as a string

Description

public string Ds\Vector::join ([ string $glue ] )

Joins all values together as a string using an optional separator between each value.

Parameters

glue

An optional string to separate each value.

Return Values

All values of the vector joined together as a string.

Examples

Example #1 Ds\Vector::join() example using a separator string

<?php
$vector 
= new \Ds\Vector(["a""b""c"123]);

var_dump($vector->join("|"));
?>

The above example will output something similar to:

string(11) "a|b|c|1|2|3"

Example #2 Ds\Vector::join() example without a separator string

<?php
$vector 
= new \Ds\Vector(["a""b""c"123]);

var_dump($vector->join());
?>

The above example will output something similar to:

string(11) "abc123"