Acquire this lock only if it is available

Returns true if the lock has been acquired.

Property definitions

pthreads $ Mutex :: try_lock
	# Acquire this lock only if it is available
	#
	# Returns `true` if the lock has been acquired.
	fun try_lock: Bool do return native.try_lock
lib/pthreads/pthreads.nit:407,2--410,45