This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Type=Application | |
Terminal=false | |
StartupNotify=true | |
Name=Sublime Text 3 | |
Name[en_US]=Sublime Text 3 | |
GenericName=Text Editor | |
GenericName[en_US]=Text Editor | |
Comment=Edit text files | |
Comment[en_US]=Edit text files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
withNoNulls("hello", "world", Throwable("error")) { p1, p2, p3 -> | |
p3.printStackTrace() | |
p1.plus(" ").plus(p2) | |
}?.let { | |
Log.d("TAG", it) | |
} ?: throw Exception("One or more parameters was null") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nombre de chambre : 456 | |
nombre de salles de bains (salles d'eau) : 460 || 461 | |
accès internet : 539 | |
nombre de lits : 457 || 459 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function targets(){ | |
return $this->hasManyThrough('App\Models\Target', 'App\Models\Throught', 'throught_ref_id', 'target_ref_id', 'local_id'); | |
} |