JUMP TOArrayInstance MethodschunkconcatdifferencedifferenceBydifferenceWithdropdropRightdropRightWhiledropWhilefindIndexfindLastIndexintersectionintersectionByintersectionWithsliceDateInstance MethodsisAfterisBeforetoStringtoStringPropertieserayearmonthdayminutesecondnanosecondweekdayweekdayOrdinalquarterweekOfMonthweekOfYearIntdigitsdownTofactorialisEvenisInisOddtimesupToStringdatePowered by isAfterisAfter(_ date: Date) -> BoolCheck if self is after input date. Parameters date: The date to compare to. Returns True if self is after input date, false otherwise. Swiftlet date = Date() let futuredate = date.addingTimeInterval(1) futuredate.isAfter(date) // -> true