-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
4,784 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/// Support for creating your own custom periods. | ||
/// | ||
/// This package is used to create custom periods. | ||
/// | ||
/// Implementing your own [Period] or [PeriodGenerator] is easy. | ||
/// | ||
/// There are already some [Period] classes implemented in this package. Look | ||
/// for [SecondPeriod], [MinutePeriod], [HourPeriod], [DayPeriod], [WeekPeriod], | ||
/// [FortnightPeriod], [MonthPeriod], [TrimesterPeriod], [SemesterPeriod] and | ||
/// [YearPeriod]. | ||
/// | ||
/// There are already some [PeriodGenerator] classes implemented in this | ||
/// package. Look for [SecondGenerator], [MinuteGenerator], | ||
/// [HourGenerator], [DayGenerator], [WeekGenerator], | ||
/// [FortnightGenerator], [MonthGenerator], [TrimesterGenerator], | ||
/// [SemesterGenerator] and [YearGenerator]. | ||
library period; | ||
|
||
export 'src/enums.dart' show Weekday, Month, Week, PeriodGenerator; | ||
export 'src/extensions.dart' show EndOfDay; | ||
export 'src/period.dart'; | ||
export 'src/period_generator.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.