RazgrizHsu

RazgrizHsu

Hi, all,

i’m trying compare with timex variables,
but i don’t know why this code work like that..


dts = Timex.parse!( "2019-01-01T00:00:00.000Z", "{ISO:Extended:Z}" )
now = Timex.parse!( "2019-01-01T00:00:00.100Z", "{ISO:Extended:Z}" )

dt = Timex.shift( dts, seconds: 5 )
	
if ( dt <= now ) do
	raise ( "why? dt already shift seconds... dt[#{ inspect dt }] now[#{ inspect now }]" )
else
	:ok
end

I thought that such a comparison should be the opposite result…

anyone can help me to understand this? thanks

Showing Posts 1 to 5

NobbZ

NobbZ

You need to use Timex.compare/2/3 instead of Kernel.<=/2.

kip

kip

ex_cldr Core Team

The built in comparison operators aren’t the right tool for this job. You probably want to use Timex.compare/3.

For an explanation of why this is the case you might find this useful. Especially this quote:

Maps are compared by size, then by keys in ascending term order, then by values in key order. In the specific case of maps’ key ordering, integers are always considered to be less than floats.

RazgrizHsu

RazgrizHsu OP

okay thank you guys,

so i need change my code to

#if ( dt <= now ) do
#instead by
compared = Timex.compare( dt, now )
if ( compared == 0 || compared == -1 ) do

right?

@kip thank you for explanation :smiley:

i was wrong a test to make sure my project working… but seem not work :smile:

test "compare with operations" do
	
	#equal
	a = Timex.parse!( "2017-01-01T01:00:00.751Z", "{ISO:Extended:Z}" )
	b = Timex.parse!( "2017-01-01T01:00:00.751Z", "{ISO:Extended:Z}" )
	assert( a == b )
	assert( ( a < b ) == false )
	assert( ( a > b ) == false )
	assert( ( a <= b ) == true )
	assert( ( a >= b ) == true )
	
	#offset 1ms
	a = Timex.parse!( "2017-01-01T01:00:00.750Z", "{ISO:Extended:Z}" )
	b = Timex.parse!( "2017-01-01T01:00:00.751Z", "{ISO:Extended:Z}" )
	assert( ( a == b ) == false )
	assert( ( a < b )  == true )
	assert( ( a > b )  == false )
	assert( ( a <= b ) == true )
	assert( ( a >= b ) == false )
	
	#offset 5secs
	a = Timex.parse!( "2019-01-01T00:00:00.000Z", "{ISO:Extended:Z}" )
	a = Timex.parse!( "2019-01-01T00:00:05.000Z", "{ISO:Extended:Z}" )
	assert( ( a == b ) == false )
	assert( ( a < b )  == true )
	assert( ( a > b )  == false )
	assert( ( a <= b ) == true )
	assert( ( a >= b ) == false )
end

I need to add this paragraph to remind me of myself :smile:

#Tips: the operation compare will fail with milliseconds, instead by Timex.compare
a = Timex.parse!( "2019-01-01T00:00:05.000Z", "{ISO:Extended:Z}" )
b = Timex.parse!( "2019-01-01T00:00:00.100Z", "{ISO:Extended:Z}" )

assert( ( a == b ) == false )
assert( ( a <= b ) == true )	# it's wrong, normally it's should be false

thanks guys :slight_smile:

NobbZ

NobbZ

I tend to always use the regular comparison operators against 0.

Timex.compare(start, end) <= 0

This does match semantics very well.

RazgrizHsu

RazgrizHsu OP

This is indeed a very good suggestion, thank you :smiley:

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews