(node *ast.Node)
| 449 | } |
| 450 | |
| 451 | func isIdentifierTypeReference(node *ast.Node) bool { |
| 452 | return ast.IsTypeReferenceNode(node) && ast.IsIdentifier(node.AsTypeReferenceNode().TypeName) |
| 453 | } |
| 454 | |
| 455 | func arrayIsHomogeneous[T any](array []T, comparer func(a, B T) bool) bool { |
| 456 | if len(array) < 2 { |
no test coverage detected