Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.09 KB

endWith.md

File metadata and controls

27 lines (23 loc) · 1.09 KB

The endWith operation

up

Works with:

  • expect(string).[to].[be].endWith(string)
  • expect(string).[to].[be].endWith(wstring)
  • expect(string).[to].[be].endWith(dstring)
  • expect(string).[to].[be].endWith(const(char)[])
  • expect(wstring).[to].[be].endWith(string)
  • expect(wstring).[to].[be].endWith(wstring)
  • expect(wstring).[to].[be].endWith(dstring)
  • expect(wstring).[to].[be].endWith(const(char)[])
  • expect(dstring).[to].[be].endWith(string)
  • expect(dstring).[to].[be].endWith(wstring)
  • expect(dstring).[to].[be].endWith(dstring)
  • expect(dstring).[to].[be].endWith(const(char)[])
  • expect(const(char)[]).[to].[be].endWith(string)
  • expect(const(char)[]).[to].[be].endWith(wstring)
  • expect(const(char)[]).[to].[be].endWith(dstring)
  • expect(const(char)[]).[to].[be].endWith(const(char)[])
  • expect(string).[to].[be].endWith(char)
  • expect(wstring).[to].[be].endWith(char)
  • expect(dstring).[to].[be].endWith(char)
  • expect(const(char)[]).[to].[be].endWith(char)