This operations will be used to drop elements in the steam on the right of the given element ``` var elements = []int{10,12,7,41,5,6} res:=koazee.StreamOf(elements).DropRight(12).Out().Val() fmt.Println(res) // [10,12] ```