http urls monitor.

goversion_arrayof_gte_go15.go 338B

123456789101112131415
  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.5
  4. package codec
  5. import "reflect"
  6. const reflectArrayOfSupported = true
  7. func reflectArrayOf(count int, elem reflect.Type) reflect.Type {
  8. return reflect.ArrayOf(count, elem)
  9. }