We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var elements = []int{10,12,7,41,5,6} res:=koazee.StreamOf(elements).DropLeft(12).Out().Val() fmt.Println(res)
// [10]
The text was updated successfully, but these errors were encountered:
I would like to address this issue. So there is a question.
In dropRight issue #44
This operations will be used to drop elements in the steam on the right of the given element
It was written. DropLeft expected values are not as follows?
expect := []int{12,7,41,5,6} actual := koazee.StreamOf([]int{10,12,7,41,5,6}).DropLeft(12).Out().Val() assert.Equal(t, expect, actual)
Sorry, something went wrong.
Hey @mentol310 I really appreciate your job!
Yes That was my thought when I create the issue. Your test would be perfect,
Could you close this issue if PR has already been merged?
No branches or pull requests
var elements = []int{10,12,7,41,5,6}
res:=koazee.StreamOf(elements).DropLeft(12).Out().Val()
fmt.Println(res)
// [10]
The text was updated successfully, but these errors were encountered: