0% found this document useful (0 votes)
9 views1 page

Vectors

The document describes various functions that can be performed on vectors in JavaScript including slicing, appending, concatenating, sorting, deduplicating, merging, intersecting and summing vectors. Key functions are vector_slice, vector_append, vector_concat, vector_sort, vector_sort_dedup_first and vector_sort_dedup_last.

Uploaded by

vasundhara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Vectors

The document describes various functions that can be performed on vectors in JavaScript including slicing, appending, concatenating, sorting, deduplicating, merging, intersecting and summing vectors. Key functions are vector_slice, vector_append, vector_concat, vector_sort, vector_sort_dedup_first and vector_sort_dedup_last.

Uploaded by

vasundhara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Vector_slice ([vector ''a','b','c'].

2,1,-1);
o/p: [vector 'c','b']
Vector_slice ([vector ''a','b','c']. 2,0,-1);
o/p: [vector 'c','b','a']

Vector_append
it will append
vector_append9vec,[record id, '1234'name 'vasu']);

vector_concat([vector 1,2,3], vector[0,9.8],[vector 10,11,12]);


[vector 1,2,3,0,9,8,10,11,12]

sort based on a key


vector_sort([vector 1,2,3,5,6,4,9]);

vector_sort_dedup_first();
vec=[vector [record id '6a' dname 'hr'], [id '8v' dname 'insurance'],

[record id '7p' dname 'finance'], [record id '6a' dname 'hr2]]

vector_sort_dedup_first(vec,{id});
last repeated one will be discarded .

Vector_slice
Vector_split
Vector_join
Vector_concat
Vector_sort
Vector_sort_dedup_first
Vector_sort_dedup_last
Vector_merge
Vector_union
Vector_intersection
Vector_merge
Vecror_sum
Vector_bsearch

You might also like