# `TDToken isEqualIgnoringCase:`

*Instance Method*

## Declaration

```swift
func isEqualIgnoringCase(_ obj: Any!) -> Bool
```

```objc
- (BOOL) isEqualIgnoringCase:(id) obj;
```

```python
isEqualIgnoringCase_(obj: object) -> bool
```

## Parameters

- `obj` — The object to compare this token to.

## Return Value

True if obj is an equivalent TDToken, ignoring differences in case.

## Discussion

Returns true if the supplied object is an equivalent TDToken, ignoring differences in case.

