LoginSignup
0
0

More than 5 years have passed since last update.

PHPエンジニアのためのGoLang便利Tips〜その3(in_array)

Last updated at Posted at 2014-11-26

phpの標準関数 in_array をGoで自前実装したらこんな感じ。


func InStringArray(val string, array []string) (exists bool, index int) {
    exists = false
    index = -1;
    for i, v := range array {
        if val == v {
            index = i
            exists = true
            return
        }   
    }
    return
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0