# endsWith

Determines if entries of x end with string (entries of) suffix
respectively, where strings are recycled to common lengths.

## Usage

``` r
endsWith(x, suffix)

# S4 method for class 'Column'
endsWith(x, suffix)
```

## Arguments

  - x:
    
    vector of character string whose "ends" are considered

  - suffix:
    
    character vector (often of length one)

## Note

endsWith since 1.4.0

## See also

Other column\_func: `alias()`, `between()`, `cast()`, `otherwise()`,
`over()`, `startsWith()`, `substr()`
