Posts

Showing posts from January 1, 2019

ヴェルノン

Image
Vernon 行政 国 フランス 地域圏 ( Région ) ノルマンディー地域圏 県 ( département ) ウール県 郡 ( arrondissement ) エヴルー郡 小郡 ( canton ) 小郡庁所在地 INSEEコード 27681 郵便番号 27200 市長(任期) フィリップ・ンギュイヤン・タン (2008年 - 2014年) 自治体間連合 (fr) fr:Communauté d'agglomération des Portes de l'Eure 人口動態 人口 26,590人 (2007年) 人口密度 761人/km 2 住民の呼称 Vernonnais 地理 座標 北緯49度05分33秒 東経1度29分09秒  /  北緯49.0925度 東経1.48583333333度  / 49.0925; 1.48583333333 座標: 北緯49度05分33秒 東経1度29分09秒  /  北緯49.0925度 東経1.48583333333度  / 49.0925; 1.48583333333 標高 最低: 10m 最高: 148m 面積 34.92km 2 (3 492ha) Vernon 公式サイト www.vernon27.fr テンプレートを表示 ヴェルノン (Vernon)は、フランス、ノルマンディー地域圏、ウール県のコミューン。ノルマンディーへの入口に位置し、エヴルーとボーヴェ間、パリとルーアン間の道路が交差する。 目次 1 地理 2 語源 3 歴史 3.1 年表 4 史跡 5 人口統計 6 交通 7 出身者 8 姉妹都市 9 脚注 地理 ヴェルノンはセーヌ川の渓谷内、エプト川との合流地点にある。ヴェルノンはサン=マルセル、サン=ジュスト、サン=ピエール=ドティルの3コミューンとともに人口36,000人の都市圏を形成する。コミューン面積は比較的広く、

Lambda argument should be moved out of parentheses

Image
1 IntelliJ gives the following complaint: Lambda argument should be moved out of parentheses val profile = loadProfiles() profile.sortedWith(Comparator({ profile1, profile2 -> if (profile1.age > profile2.age) return@Comparator 1 if (profile1.age < profile2.age) return@Comparator -1 return@Comparator 0 })) data class Developer(var age: Int) fun loadProfiles(): List<Developer> { val listOfNumber = listOf<Developer>(Developer(2), Developer(5), Developer(3)) return listOfNumber } How should I format the above to get rid of the complaint? Also, the sorting code doesn't sort. What is causing the problem? kotlin