Use lower-camel-case for enum cases.

This commit is contained in:
YOCKOW 2017-09-04 22:41:13 +09:00
parent c48a92be16
commit a68a2ae761
2 changed files with 8 additions and 8 deletions

View File

@ -13,8 +13,8 @@ public struct TimeSpecification {
/* ... */
}
public enum Clock {
case Calendar
case System
case calendar
case system
public var timeSpecification: TimeSpecification? {
/* ... */
@ -33,9 +33,9 @@ Then, you can use it in your project:
import TimeSpecification
func time(_ body:() -> Void) {
guard let start = Clock.System.timeSpecification else { return }
guard let start = Clock.system.timeSpecification else { return }
body()
guard let end = Clock.System.timeSpecification else { return }
guard let end = Clock.system.timeSpecification else { return }
let duration = end - start
print("\(duration)")
}

View File

@ -105,8 +105,8 @@ extension TimeSpecification {
}
}
public enum Clock {
case Calendar
case System
case calendar
case system
public var timeSpecification: TimeSpecification? {
var c_timespec:CTimeSpec = CTimeSpec(tv_sec:0, tv_nsec:0)
@ -115,11 +115,11 @@ public enum Clock {
var retval:CInt = -1
#if os(Linux)
clock_id = (self == .Calendar) ? CLOCK_REALTIME : CLOCK_MONOTONIC
clock_id = (self == .calendar) ? CLOCK_REALTIME : CLOCK_MONOTONIC
retval = clock_gettime(clock_id, &c_timespec)
#elseif os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
var clock_name: clock_serv_t = 0
clock_id = (self == .Calendar) ? CALENDAR_CLOCK : SYSTEM_CLOCK
clock_id = (self == .calendar) ? CALENDAR_CLOCK : SYSTEM_CLOCK
retval = host_get_clock_service(mach_host_self(), clock_id, &clock_name)
guard retval == 0 else { return nil }
retval = clock_get_time(clock_name, &c_timespec)