IsMinuteToSecond returns whether the IntervalDurationField represents the MINUTE TO SECOND interval qualifier.
()
| 734 | // IsMinuteToSecond returns whether the IntervalDurationField represents |
| 735 | // the MINUTE TO SECOND interval qualifier. |
| 736 | func (m *IntervalDurationField) IsMinuteToSecond() bool { |
| 737 | return m.FromDurationType == IntervalDurationType_MINUTE && |
| 738 | m.DurationType == IntervalDurationType_SECOND |
| 739 | } |
| 740 | |
| 741 | // IsDayToHour returns whether the IntervalDurationField represents |
| 742 | // the DAY TO HOUR interval qualifier. |
no outgoing calls
no test coverage detected