The Inbox: Chronology-Core-tcj.12.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Chronology-Core-tcj.12.mcz

commits-2
A new version of Chronology-Core was added to project The Inbox:
http://source.squeak.org/inbox/Chronology-Core-tcj.12.mcz

==================== Summary ====================

Name: Chronology-Core-tcj.12
Author: tcj
Time: 24 April 2018, 2:19:04.161964 pm
UUID: 4374e394-3435-4377-afdc-1d19fac9ad83
Ancestors: Chronology-Core-mt.11

Add edc's method to create a DateAndTime from a given UNIX time value.

=============== Diff against Chronology-Core-mt.11 ===============

Item was added:
+ ----- Method: DateAndTime class>>fromUnixTime: (in category 'squeak protocol') -----
+ fromUnixTime: aNumber
+
+
+ ^ self fromSeconds: aNumber + self unixEpoch asSeconds!