blob: 0b31b66eaf84b8655e669e0309c5e64595f3f99d [file] [log] [blame]
khenaidoo5fc5cea2021-08-11 17:39:16 -04001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Joey Armstrongba3d9d12024-01-15 14:22:11 -05005//go:build go1.12
khenaidoo5fc5cea2021-08-11 17:39:16 -04006// +build go1.12
7
8package impl
9
10import "reflect"
11
12func mapRange(v reflect.Value) *reflect.MapIter { return v.MapRange() }