Returns true if it is a regular file (not a device file, pipe, sockect, ...)

Property definitions

core $ NativeFileStat :: is_reg
	# Returns true if it is a regular file (not a device file, pipe, sockect, ...)
	fun is_reg: Bool `{ return S_ISREG(self->st_mode); `}
lib/core/file.nit:1480,2--1481,54