Skip to content

reflect.Value methods Seq and Seq2 missing #4487

Open
@jmillikin

Description

@jmillikin

These two methods are new in Go 1.23 as part of the new iterators feature:

% cat main.go 
package main

import "reflect"

func main() {
	var v reflect.Value
	_ = v.Seq
	_ = v.Seq2
}
% go build -o main
% tinygo build -o main
# example.com/example
main.go:7:8: v.Seq undefined (type reflect.Value has no field or method Seq)
main.go:8:8: v.Seq2 undefined (type reflect.Value has no field or method Seq2)

Metadata

Metadata

Assignees

No one assigned

    Labels

    reflectionNeeds further work on reflection

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions