4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
6 results tagged array x
  • thumbnail
    Understanding Data Structures in Golang | by victor steven | Medium
    November 15, 2022 at 3:50:48 PM GMT+1 - permalink - archive.org - https://medium.com/@victorsteven/understanding-data-structures-in-golang-f55205afdcaa
    array go map slice structure
  • A couple words on Arrays in Ruby - Ruby Blog

    <3

    October 7, 2017 at 7:53:30 AM GMT+2 - permalink - archive.org - http://rubyblog.pro/2017/09/couple-words-on-arrays
    array ruby
  • Note: bash get random element from string "elem1;elem2;elem3"
    #!/bin/bash
    
    servers="server1;server2;server3"
    
    IFS=';' read -r -a array <<< "$servers"
    
    rand=$[ $RANDOM % ${#array[@]} ]
    
    echo ${array[$rand]}
    October 5, 2017 at 4:32:08 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/?wfMNvw
    bash random
  • Stop abusing arrays in PHP | Nomad Software
    July 3, 2014 at 1:58:38 PM GMT+2 - permalink - archive.org - http://nomad.so/2014/06/stop-abusing-arrays-in-php/
    array php
  • How to iterate over associative array in bash - Stack Overflow

    Comment déclarer et itérer sur un tableau associatif en bash :

    declare -A array
    array[foo]=bar
    array[bar]=foo

    for i in "${!array[@]}"
    do
    echo "key : $i"
    echo "value: ${array[$i]}"
    done

    November 14, 2013 at 1:15:22 PM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/3112687/how-to-iterate-over-associative-array-in-bash
    array associative bash iterate
  • Java ArrayList to Array

    ArrayList<DeviceId> reslist = new ArrayList<DeviceId>();
    reslist.add....

    return reslist.toArray(new DeviceId[reslist.size()]);

    August 29, 2013 at 11:07:57 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?b7gz8g
    array arraylist java
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation