http urls monitor.

goversion_makemap_lt_go19.go 288B

12345678910111213
  1. // Copyright (c) 2012-2018 Ugorji Nwoke. All rights reserved.
  2. // Use of this source code is governed by a MIT license found in the LICENSE file.
  3. // +build !go1.9
  4. package codec
  5. import "reflect"
  6. func makeMapReflect(t reflect.Type, size int) reflect.Value {
  7. return reflect.MakeMap(t)
  8. }