Home | History | Annotate | Download | only in location
      1 /*
      2  * Copyright (C) 2018 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *       http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 @file:Suppress("NOTHING_TO_INLINE")
     18 
     19 package androidx.core.location
     20 
     21 import android.location.Location
     22 
     23 /**
     24  * Returns the latitude of this [Location].
     25  *
     26  * This method allows to use destructuring declarations when working with [Location],
     27  * for example:
     28  * ```
     29  * val (lat, lon) = myLocation
     30  * ```
     31  */
     32 inline operator fun Location.component1() = this.latitude
     33 
     34 /**
     35  * Returns the longitude of this [Location].
     36  *
     37  * This method allows to use destructuring declarations when working with [Location],
     38  * for example:
     39  * ```
     40  * val (lat, lon) = myLocation
     41  * ```
     42  */
     43 inline operator fun Location.component2() = this.longitude
     44