Logo

Programming-Idioms

  • Python
  • Rust
  • Go
  • Js

Idiom #115 Compare dates

Set boolean b to true if date d1 is strictly before date d2 ; false otherwise.

let b = d1 < d2
import datetime
b = d1 < d2

d1, d2 have type date
extern crate chrono;
use chrono::prelude::*;
let b = d1 < d2;
import "time"
b := d1.Before(d2)

d1, d2 have type time.Time.
bool b = d1 < d2;

New implementation...
< >
programming-idioms.org