func.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Copyright 2017, 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.md file.
  4. // Package function identifies function types.
  5. package function
  6. import "reflect"
  7. type funcType int
  8. const (
  9. _ funcType = iota
  10. ttbFunc // func(T, T) bool
  11. tibFunc // func(T, I) bool
  12. trFunc // func(T) R
  13. Equal = ttbFunc // func(T, T) bool
  14. EqualAssignable = tibFunc // func(T, I) bool; encapsulates func(T, T) bool
  15. Transformer = trFunc // func(T) R
  16. ValueFilter = ttbFunc // func(T, T) bool
  17. Less = ttbFunc // func(T, T) bool
  18. )
  19. var boolType = reflect.TypeOf(true)
  20. // IsType reports whether the reflect.Type is of the specified function type.
  21. func IsType(t reflect.Type, ft funcType) bool {
  22. if t == nil || t.Kind() != reflect.Func || t.IsVariadic() {
  23. return false
  24. }
  25. ni, no := t.NumIn(), t.NumOut()
  26. switch ft {
  27. case ttbFunc: // func(T, T) bool
  28. if ni == 2 && no == 1 && t.In(0) == t.In(1) && t.Out(0) == boolType {
  29. return true
  30. }
  31. case tibFunc: // func(T, I) bool
  32. if ni == 2 && no == 1 && t.In(0).AssignableTo(t.In(1)) && t.Out(0) == boolType {
  33. return true
  34. }
  35. case trFunc: // func(T) R
  36. if ni == 1 && no == 1 {
  37. return true
  38. }
  39. }
  40. return false
  41. }