iter

package
v0.2.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 5, 2020 License: MIT Imports: 0 Imported by: 4

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Range

func Range(n int) []struct{}

Range は、指定された回数分ループ可能な空スライスを生成して返します。

元ネタは https://github.com/bradfitz/iter/blob/master/iter.go です。

Example
package main

import (
	"log"
	"os"

	"github.com/devlights/gomy/iter"
)

func main() {
	var (
		appLog = log.New(os.Stdout, "", 0)
	)

	for i := range iter.Range(3) {
		appLog.Print(i)
	}

}
Output:

0
1
2

func RangeFn

func RangeFn(n int, fn func(i int) error) (int, error)

RangeFn は、Range に処理関数を指定できるバージョンです。挙動は同じです。

処理中にエラーが発生した場合、内部ループはそこで停止し (エラーが発生したインデックス, エラー) を返します。

Example
package main

import (
	"log"
	"os"

	"github.com/devlights/gomy/iter"
)

func main() {
	var (
		appLog = log.New(os.Stdout, "", 0)
	)

	fn := func(i int) error {
		appLog.Print(i)
		return nil
	}

	_, err := iter.RangeFn(3, fn)
	if err != nil {
		appLog.Fatal(err)
	}

}
Output:

0
1
2

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL