Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

select-next - like select+skip, gets the value following the value following the key

    select-next: func [
    	"Like select, but gets the value following the value following the key"
    	series [series!]
    	key [any-type!]
    	/local pos
    ][
    	if pos: find series key [
    		first skip pos 2
    	]
    ]
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS